summaryrefslogtreecommitdiffstats
path: root/tdeio/tdeioexec/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdeio/tdeioexec/main.cpp')
-rw-r--r--tdeio/tdeioexec/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tdeio/tdeioexec/main.cpp b/tdeio/tdeioexec/main.cpp
index 54987e43c..071c4649c 100644
--- a/tdeio/tdeioexec/main.cpp
+++ b/tdeio/tdeioexec/main.cpp
@@ -125,7 +125,7 @@ KIOExec::KIOExec()
TDEIO::Job *job = TDEIO::file_copy( url, dest );
jobList->append( job );
- connect( job, TQT_SIGNAL( result( TDEIO::Job * ) ), TQT_SLOT( slotResult( TDEIO::Job * ) ) );
+ connect( job, TQ_SIGNAL( result( TDEIO::Job * ) ), TQ_SLOT( slotResult( TDEIO::Job * ) ) );
}
}
}
@@ -133,7 +133,7 @@ KIOExec::KIOExec()
if ( tempfiles ) {
// #113991
- TQTimer::singleShot( 0, this, TQT_SLOT( slotRunApp() ) );
+ TQTimer::singleShot( 0, this, TQ_SLOT( slotRunApp() ) );
//slotRunApp(); // does not return
return;
}
@@ -174,7 +174,7 @@ void KIOExec::slotResult( TDEIO::Job * job )
kdDebug() << "All files downloaded, will call slotRunApp shortly" << endl;
// We know we can run the app now - but let's finish the job properly first.
- TQTimer::singleShot( 0, this, TQT_SLOT( slotRunApp() ) );
+ TQTimer::singleShot( 0, this, TQ_SLOT( slotRunApp() ) );
jobList->clear();
}