diff options
author | Michele Calgaro <[email protected]> | 2024-01-07 19:46:19 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-07 19:46:19 +0900 |
commit | e9d5585a3efa2fafce1a10dccc411ad2315732de (patch) | |
tree | cfa24b1224501cc1ede539e67db5add336821aca /src/part/remoteLister.cpp | |
parent | 1a75f32008be8c5bcb3add8055f1db5ae8bd602f (diff) | |
download | filelight-e9d5585a3efa2fafce1a10dccc411ad2315732de.tar.gz filelight-e9d5585a3efa2fafce1a10dccc411ad2315732de.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/part/remoteLister.cpp')
-rw-r--r-- | src/part/remoteLister.cpp | 10 |
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 |