diff options
author | Johannes Troscher <fritz_van_tom@hotmail.com> | 2011-11-27 12:18:33 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-11-27 12:18:33 +0100 |
commit | 6390d8ea58021f67257527cf98af5074656e0838 (patch) | |
tree | 2defdd7055541f41da100a81aa715bfb10ce8cc9 /src/bookmarks/bookmarkstreemodel.cpp | |
parent | Merge branch 'bkGroupMidClick' (diff) | |
download | rekonq-6390d8ea58021f67257527cf98af5074656e0838.tar.xz |
Unifies macro style
REVIEW: 103242
REVIEWED-BY: adjam
Diffstat (limited to 'src/bookmarks/bookmarkstreemodel.cpp')
-rw-r--r-- | src/bookmarks/bookmarkstreemodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bookmarks/bookmarkstreemodel.cpp b/src/bookmarks/bookmarkstreemodel.cpp index 42cd7b28..8e6104a4 100644 --- a/src/bookmarks/bookmarkstreemodel.cpp +++ b/src/bookmarks/bookmarkstreemodel.cpp @@ -344,7 +344,7 @@ void BookmarksTreeModel::bookmarksChanged(const QString &groupAddress) QStringList indexChain(groupAddress.split('/', QString::SkipEmptyParts)); bool ok; int i; - foreach(const QString & sIndex, indexChain) + Q_FOREACH(const QString & sIndex, indexChain) { i = sIndex.toInt(&ok); if (!ok) |