diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2012-03-11 11:09:35 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2012-03-25 09:22:26 +0200 |
commit | 6ceb6bd60dc99ff51c67cbd2ee739f7172ca1c8d (patch) | |
tree | d04610023689339dbbbe259e9e09b9cf88b029d8 /src/application.cpp | |
parent | Change Bookmark MIME Type and Centralize (diff) | |
download | rekonq-6ceb6bd60dc99ff51c67cbd2ee739f7172ca1c8d.tar.xz |
Fix rekonq exit values, returning ZERO on success
BUG:271442
Diffstat (limited to 'src/application.cpp')
-rw-r--r-- | src/application.cpp | 6 |
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; } |