diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:22:56 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:22:56 +0000 |
commit | 7346aee26bf190a7e70333c40fab4caca847cd27 (patch) | |
tree | 4b019b434f88dcc3eeaafe1d3f26240b4c4718e8 /kfile-plugins/lnk/lnkforward.cpp | |
parent | 23a3d3aa5b44cbdf305495919866d9dbf4f6da54 (diff) | |
download | tdeaddons-7346aee26bf190a7e70333c40fab4caca847cd27.tar.gz tdeaddons-7346aee26bf190a7e70333c40fab4caca847cd27.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaddons@1157634 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kfile-plugins/lnk/lnkforward.cpp')
-rw-r--r-- | kfile-plugins/lnk/lnkforward.cpp | 10 |
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())); } //-------------------------------------------------------------------------------- |