summaryrefslogtreecommitdiffstats
path: root/konversation/src/topiclabel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'konversation/src/topiclabel.cpp')
-rw-r--r--konversation/src/topiclabel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/konversation/src/topiclabel.cpp b/konversation/src/topiclabel.cpp
index 7b52690..75e9500 100644
--- a/konversation/src/topiclabel.cpp
+++ b/konversation/src/topiclabel.cpp
@@ -152,14 +152,14 @@ namespace Konversation
{
TQString cmd = Preferences::webBrowserCmd();
cmd.replace("%u",KURL::fromPathOrURL(link).url());
- KProcess *proc = new KProcess;
+ TDEProcess *proc = new TDEProcess;
TQStringList cmdAndArgs = KShell::splitArgs(cmd);
*proc << cmdAndArgs;
// This code will also work, but starts an extra shell process.
// kdDebug() << "IRCView::linkClickSlot(): cmd = " << cmd << endl;
// *proc << cmd;
// proc->setUseShell(true);
- proc->start(KProcess::DontCare);
+ proc->start(TDEProcess::DontCare);
delete proc;
}
}