summaryrefslogtreecommitdiff
path: root/src/application.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2012-03-11 11:09:35 +0100
committerAndrea Diamantini <adjam7@gmail.com>2012-03-25 09:22:26 +0200
commit6ceb6bd60dc99ff51c67cbd2ee739f7172ca1c8d (patch)
treed04610023689339dbbbe259e9e09b9cf88b029d8 /src/application.cpp
parentChange Bookmark MIME Type and Centralize (diff)
downloadrekonq-6ceb6bd60dc99ff51c67cbd2ee739f7172ca1c8d.tar.xz
Fix rekonq exit values, returning ZERO on success
BUG:271442
Diffstat (limited to 'src/application.cpp')
-rw-r--r--src/application.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/application.cpp b/src/application.cpp
index 48fb1a3e..65f2cf95 100644
--- a/src/application.cpp
+++ b/src/application.cpp
@@ -199,7 +199,8 @@ int Application::newInstance()
{
isFirstLoad = false;
- return exitValue;
+ kDebug() << "EXIT VALUE: " << exitValue;
+ return 0;
}
if (isRekonqCrashed && isFirstLoad)
@@ -335,7 +336,8 @@ int Application::newInstance()
KStartupInfo::appStarted();
isFirstLoad = false;
- return exitValue;
+ kDebug() << "EXIT VALUE: " << exitValue;
+ return 0;
}