summaryrefslogtreecommitdiffstats
path: root/src/part/remoteLister.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-07 19:46:19 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-09 10:50:11 +0900
commit27c4f9d521b001349222740b1980871cc62f6cf4 (patch)
tree78c18fcd45d9044c3040990d641b87bb64c2f2b9 /src/part/remoteLister.cpp
parent2725bd4a283a9b1ea7baae06694c16830d89f62f (diff)
downloadfilelight-27c4f9d5.tar.gz
filelight-27c4f9d5.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit e9d5585a3efa2fafce1a10dccc411ad2315732de)
Diffstat (limited to 'src/part/remoteLister.cpp')
-rw-r--r--src/part/remoteLister.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/part/remoteLister.cpp b/src/part/remoteLister.cpp
index b57fcfd..dc2d04f 100644
--- a/src/part/remoteLister.cpp
+++ b/src/part/remoteLister.cpp
@@ -70,9 +70,9 @@ namespace Filelight
setShowingDotFiles( true ); //stupid KDirLister API function names
setMainWindow( parent );
- //use TQT_SIGNAL(result(TDEIO::Job*)) instead and then use Job::error()
- connect( this, TQT_SIGNAL(completed()), TQT_SLOT(completed()) );
- connect( this, TQT_SIGNAL(canceled()), TQT_SLOT(canceled()) );
+ //use TQ_SIGNAL(result(TDEIO::Job*)) instead and then use Job::error()
+ connect( this, TQ_SIGNAL(completed()), TQ_SLOT(completed()) );
+ connect( this, TQ_SIGNAL(canceled()), TQ_SLOT(canceled()) );
//we do this non-recursively - it is the only way!
openURL( url );
@@ -97,7 +97,7 @@ namespace Filelight
//as usual KDE documentation didn't suggest I needed to do this at all
//I had to figure it out myself
// -- avoid crash
- TQTimer::singleShot( 0, this, TQT_SLOT(_completed()) );
+ TQTimer::singleShot( 0, this, TQ_SLOT(_completed()) );
}
void
@@ -105,7 +105,7 @@ namespace Filelight
{
debug() << "canceled: " << url().prettyURL() << endl;
- TQTimer::singleShot( 0, this, TQT_SLOT(_completed()) );
+ TQTimer::singleShot( 0, this, TQ_SLOT(_completed()) );
}
void