aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cpaster/pasteselectdialog.cpp
diff options
context:
space:
mode:
authorOrgad Shaneh <[email protected]>2012-11-28 20:44:03 +0200
committerOrgad Shaneh <[email protected]>2012-11-28 20:20:46 +0100
commita44aa55502b1d9f548692e49ab7cea13d341c8ca (patch)
tree77f9fbfd583551839c4448c1b66de7c47dd7afc3 /src/plugins/cpaster/pasteselectdialog.cpp
parent3747e941ad79f64e28c78c83a840783eb3edfd6f (diff)
Add whitespace after control keywords
find -name \*.cpp -o -name \*.h | \ xargs sed -Ei 's/ (for|foreach|if|switch|while)\(/ \1 (/g' Change-Id: I9efdff4bf0c8c01a52baaaeb75198483c77b0390 Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/cpaster/pasteselectdialog.cpp')
-rw-r--r--src/plugins/cpaster/pasteselectdialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cpaster/pasteselectdialog.cpp b/src/plugins/cpaster/pasteselectdialog.cpp
index d6774d71b3a..aee715fd709 100644
--- a/src/plugins/cpaster/pasteselectdialog.cpp
+++ b/src/plugins/cpaster/pasteselectdialog.cpp
@@ -44,7 +44,7 @@ PasteSelectDialog::PasteSelectDialog(const QList<Protocol*> &protocols,
m_protocols(protocols)
{
m_ui.setupUi(this);
- foreach(const Protocol *protocol, protocols) {
+ foreach (const Protocol *protocol, protocols) {
m_ui.protocolBox->addItem(protocol->name());
connect(protocol, SIGNAL(listDone(QString,QStringList)),
this, SLOT(listDone(QString,QStringList)));