diff options
author | Orgad Shaneh <orgad.shaneh@audiocodes.com> | 2012-11-28 20:44:03 +0200 |
---|---|---|
committer | Orgad Shaneh <orgads@gmail.com> | 2012-11-28 20:20:46 +0100 |
commit | a44aa55502b1d9f548692e49ab7cea13d341c8ca (patch) | |
tree | 77f9fbfd583551839c4448c1b66de7c47dd7afc3 /src/plugins/cpaster/pasteview.cpp | |
parent | 3747e941ad79f64e28c78c83a840783eb3edfd6f (diff) | |
download | qt-creator-a44aa55502b1d9f548692e49ab7cea13d341c8ca.tar.gz |
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 <qthjk@ovi.com>
Diffstat (limited to 'src/plugins/cpaster/pasteview.cpp')
-rw-r--r-- | src/plugins/cpaster/pasteview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cpaster/pasteview.cpp b/src/plugins/cpaster/pasteview.cpp index e346e94caa..160d35de87 100644 --- a/src/plugins/cpaster/pasteview.cpp +++ b/src/plugins/cpaster/pasteview.cpp @@ -59,7 +59,7 @@ PasteView::PasteView(const QList<Protocol *> protocols, m_ui.buttonBox->button(QDialogButtonBox::Ok)->setText(tr("Paste")); connect(m_ui.uiPatchList, SIGNAL(itemChanged(QListWidgetItem*)), this, SLOT(contentChanged())); - foreach(const Protocol *p, protocols) + foreach (const Protocol *p, protocols) m_ui.protocolBox->addItem(p->name()); connect(m_ui.protocolBox, SIGNAL(currentIndexChanged(int)), this, SLOT(protocolChanged(int))); |