diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2012-04-23 00:34:19 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-04-23 00:34:19 +0200 |
commit | ae1c295495659fb01874ae6af4d0b89a0a2424dc (patch) | |
tree | 8143905fece76f036e893d4684443025a67ea4d4 /src/urlbar/urlbar.cpp | |
parent | Add fixed favorite icon in the toolbar to let add favorites easier (diff) | |
download | rekonq-ae1c295495659fb01874ae6af4d0b89a0a2424dc.tar.xz |
Fix opensearch add shortcut handling
(at least on every site tested, but opensearch.org itself. Broken?)
BUG: 296707
Diffstat (limited to 'src/urlbar/urlbar.cpp')
-rw-r--r-- | src/urlbar/urlbar.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/urlbar/urlbar.cpp b/src/urlbar/urlbar.cpp index b796224b..1a8410a3 100644 --- a/src/urlbar/urlbar.cpp +++ b/src/urlbar/urlbar.cpp @@ -136,8 +136,7 @@ UrlBar::UrlBar(QWidget *parent) connect(_tab->view(), SIGNAL(iconChanged()), this, SLOT(refreshFavicon())); // search icon - connect(rApp->opensearchManager(), SIGNAL(openSearchEngineAdded(QString,QString,QString)), - this, SLOT(updateRightIcons())); + connect(rApp->opensearchManager(), SIGNAL(openSearchEngineAdded(QString)), this, SLOT(updateRightIcons())); // bookmark icon connect(rApp->bookmarkManager(), SIGNAL(bookmarksUpdated()), this, SLOT(updateRightIcons())); |