summaryrefslogtreecommitdiffstats
path: root/kfile-plugins/lnk/lnkforward.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kfile-plugins/lnk/lnkforward.cpp')
-rw-r--r--kfile-plugins/lnk/lnkforward.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kfile-plugins/lnk/lnkforward.cpp b/kfile-plugins/lnk/lnkforward.cpp
index a79a7db..af4492b 100644
--- a/kfile-plugins/lnk/lnkforward.cpp
+++ b/kfile-plugins/lnk/lnkforward.cpp
@@ -72,9 +72,9 @@ int LNKForwarder::run(KCmdLineArgs *args)
bool ret = readLNK(args->arg(0), info);
if ( ! ret ) return 1;
- info.path.replace(QChar('\\'), QChar('/'));
+ info.path.replace(TQChar('\\'), TQChar('/'));
- QString path;
+ TQString path;
if ( info.isNetworkPath )
{
@@ -109,8 +109,8 @@ int LNKForwarder::run(KCmdLineArgs *args)
kdDebug(7034) << "running:" << path << endl;
KRun * run = new KRun(path);
- QObject::connect(run, SIGNAL(finished()), this, SLOT(delayedQuit()));
- QObject::connect(run, SIGNAL(error()), this, SLOT(delayedQuit()));
+ TQObject::connect(run, TQT_SIGNAL(finished()), this, TQT_SLOT(delayedQuit()));
+ TQObject::connect(run, TQT_SIGNAL(error()), this, TQT_SLOT(delayedQuit()));
return exec();
}
@@ -122,7 +122,7 @@ void LNKForwarder::delayedQuit()
{
// Quit in 2 seconds. This leaves time for KRun to pop up
// "app not found" in KProcessRunner, if that was the case.
- QTimer::singleShot(2000, this, SLOT(deref()));
+ TQTimer::singleShot(2000, this, TQT_SLOT(deref()));
}
//--------------------------------------------------------------------------------