summaryrefslogtreecommitdiffstats
path: root/src/part/progressBox.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/progressBox.cpp
parent2725bd4a283a9b1ea7baae06694c16830d89f62f (diff)
downloadfilelight-27c4f9d521b001349222740b1980871cc62f6cf4.tar.gz
filelight-27c4f9d521b001349222740b1980871cc62f6cf4.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/progressBox.cpp')
-rw-r--r--src/part/progressBox.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/part/progressBox.cpp b/src/part/progressBox.cpp
index 2b0d093..ba8fef5 100644
--- a/src/part/progressBox.cpp
+++ b/src/part/progressBox.cpp
@@ -22,10 +22,10 @@ ProgressBox::ProgressBox( TQWidget *parent, TQObject *part )
setText( 999999 );
setMinimumWidth( sizeHint().width() );
- connect( &m_timer, TQT_SIGNAL(timeout()), TQT_SLOT(report()) );
- connect( part, TQT_SIGNAL(started( TDEIO::Job* )), TQT_SLOT(start()) );
- connect( part, TQT_SIGNAL(completed()), TQT_SLOT(stop()) );
- connect( part, TQT_SIGNAL(canceled( const TQString& )), TQT_SLOT(halt()) );
+ connect( &m_timer, TQ_SIGNAL(timeout()), TQ_SLOT(report()) );
+ connect( part, TQ_SIGNAL(started( TDEIO::Job* )), TQ_SLOT(start()) );
+ connect( part, TQ_SIGNAL(completed()), TQ_SLOT(stop()) );
+ connect( part, TQ_SIGNAL(canceled( const TQString& )), TQ_SLOT(halt()) );
}
void
@@ -53,7 +53,7 @@ ProgressBox::halt()
{
// canceled by stop button
m_timer.stop();
- TQTimer::singleShot( 2000, this, TQT_SLOT(hide()) );
+ TQTimer::singleShot( 2000, this, TQ_SLOT(hide()) );
}
void