summaryrefslogtreecommitdiff
path: root/src/urlbar/completionwidget.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2012-12-28 18:32:05 +0100
committerAndrea Diamantini <adjam7@gmail.com>2012-12-28 18:32:05 +0100
commitd6c022a8b01715f50d227c938beed680ac40ace0 (patch)
tree52e2b70af1c7f5fe59f6da141bf44a794f946bb5 /src/urlbar/completionwidget.cpp
parentKrazy Fixes, first shot (diff)
downloadrekonq-d6c022a8b01715f50d227c938beed680ac40ace0.tar.xz
Krazy fixes, second shot (normalize)
Diffstat (limited to 'src/urlbar/completionwidget.cpp')
-rw-r--r--src/urlbar/completionwidget.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/urlbar/completionwidget.cpp b/src/urlbar/completionwidget.cpp
index 02f0bc7e..f745afae 100644
--- a/src/urlbar/completionwidget.cpp
+++ b/src/urlbar/completionwidget.cpp
@@ -75,9 +75,9 @@ void CompletionWidget::insertItems(const UrlSuggestionList &list, const QString&
ListItem *suggestion = ListItemFactory::create(item, text, this);
suggestion->setBackgroundRole(offset % 2 ? QPalette::AlternateBase : QPalette::Base);
connect(suggestion,
- SIGNAL(itemClicked(ListItem*, Qt::MouseButton, Qt::KeyboardModifiers)),
+ SIGNAL(itemClicked(ListItem*,Qt::MouseButton,Qt::KeyboardModifiers)),
this,
- SLOT(itemChosen(ListItem*, Qt::MouseButton, Qt::KeyboardModifiers)));
+ SLOT(itemChosen(ListItem*,Qt::MouseButton,Qt::KeyboardModifiers)));
connect(suggestion, SIGNAL(updateList()), this, SLOT(updateList()));
connect(this, SIGNAL(nextItemSubChoice()), suggestion, SLOT(nextItemSubChoice()));
@@ -394,8 +394,8 @@ void CompletionWidget::suggestUrls(const QString &text)
}
UrlSuggester *res = new UrlSuggester(text);
- connect(res, SIGNAL(suggestionsReady(UrlSuggestionList, QString)),
- this, SLOT(updateSuggestionList(UrlSuggestionList, QString)));
+ connect(res, SIGNAL(suggestionsReady(UrlSuggestionList,QString)),
+ this, SLOT(updateSuggestionList(UrlSuggestionList,QString)));
_resList = res->orderedSearchItems();
// NOTE: It's important to call this AFTER orderedSearchItems() to let everything work