bc86df2
diff -up kdelibs-4.13.2/kdecore/kernel/ktoolinvocation_x11.cpp.orig kdelibs-4.13.2/kdecore/kernel/ktoolinvocation_x11.cpp
bc86df2
--- kdelibs-4.13.2/kdecore/kernel/ktoolinvocation_x11.cpp.orig	2014-07-11 16:54:51.000000000 +0200
bc86df2
+++ kdelibs-4.13.2/kdecore/kernel/ktoolinvocation_x11.cpp	2014-07-11 16:57:31.000000000 +0200
bc86df2
@@ -412,11 +412,9 @@ void KToolInvocation::invokeTerminal(con
bc86df2
         // directory before launching them, see below.
bc86df2
     }
bc86df2
 
bc86df2
-    QString error;
bc86df2
-    if (self()->startServiceInternal("kdeinit_exec_with_workdir",
bc86df2
-                                    cmd, cmdTokens, &error, 0, NULL, startup_id, false, workdir)) {
bc86df2
+    if (!QProcess::startDetached(cmd, cmdTokens)) {
bc86df2
       KMessage::message(KMessage::Error,
bc86df2
-                      i18n("Could not launch the terminal client:\n\n%1", error),
bc86df2
+                      i18n("Could not launch the terminal client"),
bc86df2
                       i18n("Could not launch Terminal Client"));
bc86df2
     }
bc86df2
 }