diff options
Diffstat (limited to 'kdesktop')
-rw-r--r-- | kdesktop/krootwm.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kdesktop/krootwm.cc b/kdesktop/krootwm.cc index c14d1326c..9c68fc740 100644 --- a/kdesktop/krootwm.cc +++ b/kdesktop/krootwm.cc @@ -763,8 +763,8 @@ void KRootWm::slotOpenTerminal() TDEConfigGroupSaver gs(TDEGlobal::config(), "General"); TQString terminal = TDEGlobal::config()->readPathEntry("TerminalApplication", "konsole"); - *p << terminal << "--workdir=" + TDEGlobalSettings::desktopPath() + "/"; - + *p << terminal; + p->setWorkingDirectory(TDEGlobalSettings::desktopPath()); p->start(TDEProcess::DontCare); delete p; |