diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-02-18 03:26:42 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-02-18 03:26:42 +0100 |
commit | 871fa5c3a2f0f85f7338171c3d7660167150c69d (patch) | |
tree | 71e9d40c46600889d3bda485675418cb710cea80 /src/webview.cpp | |
parent | don't change stop/reload icon on not focused loading pages. (diff) | |
download | rekonq-871fa5c3a2f0f85f7338171c3d7660167150c69d.tar.xz |
half fixed (but half is not enough...) the favicon querelle..
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 e1ba2a46..36f62bfa 100644 --- a/src/webview.cpp +++ b/src/webview.cpp @@ -164,7 +164,7 @@ void WebView::contextMenuEvent(QContextMenuEvent *event) const QString searchProviderPrefix = *(service->property("Keys").toStringList().begin()) + keywordDelimiter; data.setData(searchProviderPrefix + "some keyword"); a = new KAction(service->name(), this); - a->setIcon(Application::icon(KUrl(data.uri()))); + a->setIcon( Application::icon( data.uri() ) ); a->setData(searchProviderPrefix); connect(a, SIGNAL(triggered(bool)), this, SLOT(search())); searchMenu->addAction(a); |