summaryrefslogtreecommitdiffstats
path: root/kio/kioexec/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kio/kioexec/main.cpp')
-rw-r--r--kio/kioexec/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kio/kioexec/main.cpp b/kio/kioexec/main.cpp
index 2a1494043..22c539a75 100644
--- a/kio/kioexec/main.cpp
+++ b/kio/kioexec/main.cpp
@@ -111,7 +111,7 @@ KIOExec::KIOExec()
// Build the destination filename, in ~/.trinity/cache-*/krun/
// Unlike KDE-1.1, we put the filename at the end so that the extension is kept
// (Some programs rely on it)
- TQString tmp = KGlobal::dirs()->saveLocation( "cache", "krun/" ) +
+ TQString tmp = TDEGlobal::dirs()->saveLocation( "cache", "krun/" ) +
TQString("%1.%2.%3").arg(getpid()).arg(jobCounter++).arg(fileName);
fileInfo file;
file.path = tmp;
@@ -211,9 +211,9 @@ void KIOExec::slotRunApp()
id.setupStartupEnv();
#endif
- KProcess proc;
+ TDEProcess proc;
proc << params;
- proc.start( KProcess::Block );
+ proc.start( TDEProcess::Block );
#ifdef Q_WS_X11
KStartupInfo::resetStartupEnv();