summaryrefslogtreecommitdiff
path: root/src/application.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2011-12-28 15:13:11 +0100
committerAndrea Diamantini <adjam7@gmail.com>2011-12-28 15:13:11 +0100
commit1dbb045f0e374ef78a76086912d2ca3dac6cedeb (patch)
treeca16fe8d7bc418f7db68e344f5825cab80eb163e /src/application.cpp
parentIconManager, small cleanup: use (QWeb)Frames instead of pages. (diff)
downloadrekonq-1dbb045f0e374ef78a76086912d2ca3dac6cedeb.tar.xz
Session Management clean up
PS: ignore about urls in the session manager
Diffstat (limited to 'src/application.cpp')
-rw-r--r--src/application.cpp13
1 files changed, 4 insertions, 9 deletions
diff --git a/src/application.cpp b/src/application.cpp
index f5547fa2..942e0876 100644
--- a/src/application.cpp
+++ b/src/application.cpp
@@ -185,7 +185,7 @@ int Application::newInstance()
// so, we have 8 possible cases...
bool isFirstLoad = m_mainWindows.isEmpty();
bool areThereArguments = (args->count() > 0);
- bool isRekonqCrashed = ReKonfig::recoverOnCrash();
+ bool isRekonqCrashed = (ReKonfig::recoverOnCrash() > 0);
// note that isRekonqCrashed is always true if it is not the first load
// !isFirstLoad -> isRekonqCrashed
@@ -198,6 +198,7 @@ int Application::newInstance()
if (isRekonqCrashed && isFirstLoad)
{
loadUrl(KUrl("about:closedTabs"), Rekonq::NewWindow);
+ mainWindow()->currentTab()->showMessageBar();
}
if (areThereArguments)
@@ -213,7 +214,7 @@ int Application::newInstance()
}
// first argument: 99% of the time we have just that...
- if (isFirstLoad && !isRekonqCrashed)
+ if (isFirstLoad)
{
// No windows in the current desktop? No windows at all?
// Create a new one and load there sites...
@@ -245,8 +246,6 @@ int Application::newInstance()
for (int i = 1; i < urlList.count(); ++i)
loadUrl(urlList.at(i), Rekonq::NewWindow);
}
-
- KStartupInfo::appStarted();
}
else
{
@@ -308,15 +307,11 @@ int Application::newInstance()
connect(bookmarkManager(), SIGNAL(openUrl(const KUrl&, const Rekonq::OpenType&)),
instance(), SLOT(loadUrl(const KUrl&, const Rekonq::OpenType&)));
- // crash recovering
- if (ReKonfig::recoverOnCrash())
- {
- mainWindow()->currentTab()->showMessageBar();
- }
ReKonfig::setRecoverOnCrash(ReKonfig::recoverOnCrash() + 1);
saveConfiguration();
}
+ KStartupInfo::appStarted();
return exitValue;
}