diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-09-22 12:24:54 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-09-22 12:24:54 +0200 |
commit | c376a1988f8bd026b46a45a640abc810dc7f6fda (patch) | |
tree | 25620771556c019b808332f074aa9816fe08d828 /src/webview.cpp | |
parent | Merge commit 'refs/merge-requests/1564' of git://gitorious.org/rekonq/mainlin... (diff) | |
download | rekonq-c376a1988f8bd026b46a45a640abc810dc7f6fda.tar.xz |
Fixing foreach macros..
Diffstat (limited to 'src/webview.cpp')
-rw-r--r-- | src/webview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webview.cpp b/src/webview.cpp index 8a74e76b..21a24c4f 100644 --- a/src/webview.cpp +++ b/src/webview.cpp @@ -175,7 +175,7 @@ void WebView::contextMenuEvent(QContextMenuEvent *event) KService::Ptr service; KUriFilterData data; - foreach (const QString &engine, favoriteEngines) + Q_FOREACH(const QString &engine, favoriteEngines) { if(!engine.isEmpty()) { |