diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-03-05 01:04:28 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-03-05 01:04:28 +0100 |
commit | fba2312780dd712fff036c3926320d1ceba2adbc (patch) | |
tree | 1a52e85218380b4df4b76e2b18d216d381ff8962 /src/application.cpp | |
parent | Fix choice between history & bookmarks in the new tab first page. (diff) | |
download | rekonq-fba2312780dd712fff036c3926320d1ceba2adbc.tar.xz |
Fixing recover on crash
hackish fix :(
Diffstat (limited to 'src/application.cpp')
-rw-r--r-- | src/application.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/application.cpp b/src/application.cpp index 270cd87f..499c7a37 100644 --- a/src/application.cpp +++ b/src/application.cpp @@ -79,6 +79,11 @@ Application::Application() Application::~Application() { + // ok, we are closing well. + // Don't recover on next load.. + ReKonfig::setRecoverOnCrash(false); + saveConfiguration(); + foreach( QWeakPointer<MainWindow> window, m_mainWindows) { delete window.data(); @@ -143,7 +148,7 @@ int Application::newInstance() // is your app session restored? restore session... // this mechanism also falls back to load usual plain rekonq // if something goes wrong... - if (isSessionRestored() && sessionManager()->restoreSession()) + if (ReKonfig::recoverOnCrash() && sessionManager()->restoreSession()) { kDebug() << "session restored"; return 1; @@ -198,6 +203,10 @@ void Application::postLaunch() // bookmarks loading connect(Application::bookmarkProvider(), SIGNAL(openUrl(const KUrl&, const Rekonq::OpenType&)), Application::instance(), SLOT(loadUrl(const KUrl&, const Rekonq::OpenType&))); + + // crash recovering + ReKonfig::setRecoverOnCrash(true); + saveConfiguration(); } |