diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2013-06-27 02:27:48 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2013-06-27 02:27:48 +0200 |
commit | 42eb221fc055fb8652b72de599da1e27748a35ad (patch) | |
tree | 94a5a88d5f85dfa7d7e503dc2641b6f3f482ed51 | |
parent | Added "wheel" case to the general zoom management (diff) | |
download | rekonq-42eb221fc055fb8652b72de599da1e27748a35ad.tar.xz |
oops... signal --> slot
-rw-r--r-- | src/webtab/webtab.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
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())); |