From 6ceb6bd60dc99ff51c67cbd2ee739f7172ca1c8d Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Sun, 11 Mar 2012 11:09:35 +0100 Subject: Fix rekonq exit values, returning ZERO on success BUG:271442 --- src/application.cpp | 6 ++++-- 1 file 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; } -- cgit v1.2.1