diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2011-09-27 13:00:01 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-09-27 13:00:01 +0200 |
commit | 72219b94111542eb45cf8b93ad12c47f1d33aaa8 (patch) | |
tree | c2311b6a1272a3878febe06e448bc06d77633704 /src/webtab.cpp | |
parent | Calm down QWidget::setLayout() warnings (diff) | |
download | rekonq-72219b94111542eb45cf8b93ad12c47f1d33aaa8.tar.xz |
Fix session manager restore
I think we need to consider the two cases (normal restore vs restore
from crash) in different ways.
Diffstat (limited to 'src/webtab.cpp')
-rw-r--r-- | src/webtab.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webtab.cpp b/src/webtab.cpp index 9b1a31f9..61c9077f 100644 --- a/src/webtab.cpp +++ b/src/webtab.cpp @@ -310,5 +310,5 @@ void WebTab::showMessageBar() qobject_cast<QVBoxLayout *>(layout())->insertWidget(0, msgBar); msgBar->animatedShow(); - connect(msgBar, SIGNAL(accepted()), rApp->sessionManager(), SLOT(restoreSession())); + connect(msgBar, SIGNAL(accepted()), rApp->sessionManager(), SLOT(restoreCrashedSession())); } |