diff options
Diffstat (limited to 'quanta/treeviews/scripttreeview.cpp')
-rw-r--r-- | quanta/treeviews/scripttreeview.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/quanta/treeviews/scripttreeview.cpp b/quanta/treeviews/scripttreeview.cpp index eb64dd0b..6819e1ca 100644 --- a/quanta/treeviews/scripttreeview.cpp +++ b/quanta/treeviews/scripttreeview.cpp @@ -172,9 +172,9 @@ void ScriptTreeView::slotEditScript() emit openFile(urlToOpen); else { - KProcess *proc = new KProcess(); + TDEProcess *proc = new TDEProcess(); *proc << editApp << urlToOpen.path(); - proc->start(KProcess::DontCare); + proc->start(TDEProcess::DontCare); } } } @@ -195,11 +195,11 @@ void ScriptTreeView::slotRun() } else { - KProcess *proc = new KProcess(); + TDEProcess *proc = new TDEProcess(); TQStringList argsList = TQStringList::split(' ', execApp); *proc << argsList; *proc << urlToOpen.path(); - proc->start(KProcess::DontCare); + proc->start(TDEProcess::DontCare); } } } |