summaryrefslogtreecommitdiff
path: root/src/urlbar/urlbar.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2012-02-16 19:23:13 +0100
committerAndrea Diamantini <adjam7@gmail.com>2012-02-16 19:23:13 +0100
commit739df1fcbcae90a4b15ec9c411514b547062905a (patch)
tree8f070c3fbd584528fc03753f2f1a10358db8dbb3 /src/urlbar/urlbar.cpp
parentUpdate RELEASE_HOWTO file (diff)
parentKrazy fixes (diff)
downloadrekonq-739df1fcbcae90a4b15ec9c411514b547062905a.tar.xz
Merge branch 'Branches.0.9'
Diffstat (limited to 'src/urlbar/urlbar.cpp')
-rw-r--r--src/urlbar/urlbar.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/urlbar/urlbar.cpp b/src/urlbar/urlbar.cpp
index a7cb680c..c0da3ff1 100644
--- a/src/urlbar/urlbar.cpp
+++ b/src/urlbar/urlbar.cpp
@@ -133,7 +133,7 @@ UrlBar::UrlBar(QWidget *parent)
connect(_tab->view(), SIGNAL(iconChanged()), this, SLOT(refreshFavicon()));
// search icon
- connect(rApp->opensearchManager(), SIGNAL(openSearchEngineAdded(QString, QString, QString)),
+ connect(rApp->opensearchManager(), SIGNAL(openSearchEngineAdded(QString,QString,QString)),
this, SLOT(updateRightIcons()));
_suggestionTimer->setSingleShot(true);
@@ -449,7 +449,7 @@ void UrlBar::activateSuggestions(bool b)
{
_box = new CompletionWidget(this);
installEventFilter(_box.data());
- connect(_box.data(), SIGNAL(chosenUrl(KUrl, Rekonq::OpenType)), this, SLOT(loadRequestedUrl(KUrl, Rekonq::OpenType)));
+ connect(_box.data(), SIGNAL(chosenUrl(KUrl,Rekonq::OpenType)), this, SLOT(loadRequestedUrl(KUrl,Rekonq::OpenType)));
// activate suggestions on edit text
connect(this, SIGNAL(textChanged(QString)), this, SLOT(detectTypedString(QString)));