From d05a127b4a8691f99eeee55bb4ebe145ea4afb00 Mon Sep 17 00:00:00 2001 From: Marco Martin Date: Fri, 20 Aug 2010 19:01:59 +0000 Subject: [PATCH] connect to the signal not to a slot svn path=/trunk/KDE/kdelibs/; revision=1166078 --- widgets/webview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widgets/webview.cpp b/widgets/webview.cpp index 67b35afee..3828c4191 100644 --- a/widgets/webview.cpp +++ b/widgets/webview.cpp @@ -80,7 +80,7 @@ WebView::WebView(QGraphicsItem *parent) connect(d->webView, SIGNAL(loadFinished(bool)), this, SLOT(loadingFinished(bool))); connect(d->webView, SIGNAL(urlChanged(const QUrl &)), - this, SLOT(urlChanged(const QUrl &))); + this, SIGNAL(urlChanged(const QUrl &))); } WebView::~WebView()