From 42eb221fc055fb8652b72de599da1e27748a35ad Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Thu, 27 Jun 2013 02:27:48 +0200 Subject: oops... signal --> slot --- src/webtab/webtab.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/webtab/webtab.cpp b/src/webtab/webtab.cpp index 7d576025..93d1b38c 100644 --- a/src/webtab/webtab.cpp +++ b/src/webtab/webtab.cpp @@ -117,7 +117,6 @@ WebTab::WebTab(QWidget *parent, bool isPrivateBrowsing) connect(view(), SIGNAL(urlChanged(QUrl)), this, SIGNAL(urlChanged(QUrl))); connect(view(), SIGNAL(titleChanged(QString)), this, SIGNAL(titleChanged(QString))); connect(view(), SIGNAL(iconChanged()), this, SIGNAL(iconChanged())); - connect(view(), SIGNAL(zoomChanged(int)), this, SIGNAL(setZoom(int))); connect(page(), SIGNAL(initialUrl(QUrl)), this, SIGNAL(urlChanged(QUrl))); @@ -128,10 +127,11 @@ WebTab::WebTab(QWidget *parent, bool isPrivateBrowsing) connect(this, SIGNAL(iconChanged()), this, SLOT(webAppIconChanged())); } - connect(view(), SIGNAL(loadProgress(int)), this, SLOT(updateProgress(int))); - connect(view(), SIGNAL(loadStarted()), this, SLOT(resetProgress())); + connect(view(), SIGNAL(loadProgress(int)), this, SLOT(updateProgress(int))); + connect(view(), SIGNAL(loadStarted()), this, SLOT(resetProgress())); connect(view(), SIGNAL(loadFinished(bool)), this, SLOT(loadFinished())); - + connect(view(), SIGNAL(zoomChanged(int)), this, SLOT(setZoom(int))); + // Session Manager connect(view(), SIGNAL(loadFinished(bool)), SessionManager::self(), SLOT(saveSession())); -- cgit v1.2.1