summaryrefslogtreecommitdiff
path: root/src/webview.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-02-18 03:26:42 +0100
committerAndrea Diamantini <adjam7@gmail.com>2010-02-18 03:26:42 +0100
commit871fa5c3a2f0f85f7338171c3d7660167150c69d (patch)
tree71e9d40c46600889d3bda485675418cb710cea80 /src/webview.cpp
parentdon't change stop/reload icon on not focused loading pages. (diff)
downloadrekonq-871fa5c3a2f0f85f7338171c3d7660167150c69d.tar.xz
half fixed (but half is not enough...) the favicon querelle..
Diffstat (limited to 'src/webview.cpp')
-rw-r--r--src/webview.cpp2
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);