summaryrefslogtreecommitdiff
path: root/src/webtab.cpp
diff options
context:
space:
mode:
authorJohannes Tröscher <fritz_van_tom@hotmail.com>2011-09-13 19:49:31 +0200
committerJohannes Tröscher <fritz_van_tom@hotmail.com>2011-09-13 19:49:31 +0200
commit67f7e374770103d1556cca48e907b3cbff6ac491 (patch)
treeb47a60d29cfbd540d3fa45eab0db26af154a8b97 /src/webtab.cpp
parentload clipboard url on middle-click if autoscroll is disabled (diff)
parentFix close & session (diff)
downloadrekonq-67f7e374770103d1556cca48e907b3cbff6ac491.tar.xz
Merge branch 'master' of git.kde.org:rekonq
Diffstat (limited to 'src/webtab.cpp')
-rw-r--r--src/webtab.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/webtab.cpp b/src/webtab.cpp
index 39287d28..1eba22a1 100644
--- a/src/webtab.cpp
+++ b/src/webtab.cpp
@@ -87,6 +87,9 @@ WebTab::WebTab(QWidget *parent)
connect(m_webView, SIGNAL(loadProgress(int)), this, SLOT(updateProgress(int)));
connect(m_webView, SIGNAL(loadFinished(bool)), this, SLOT(loadFinished(bool)));
connect(m_webView, SIGNAL(titleChanged(const QString &)), this, SIGNAL(titleChanged(const QString &)));
+
+ // Session Manager
+ connect(m_webView, SIGNAL(loadFinished(bool)), rApp->sessionManager(), SLOT(saveSession()));
}