diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-27 19:25:43 +0900 | 
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-31 22:16:03 +0900 | 
| commit | ecca365daf06c711cf30f93f4c773dabf5642790 (patch) | |
| tree | 0b2f6780f60fd7eb35c84cc899e7d51db189d67d /src/widgets/qstatusbar.cpp | |
| parent | 1c30858477bcf3a4c74866d9a3d26f57753dd36a (diff) | |
| download | tqt-ecca365d.tar.gz tqt-ecca365d.zip | |
Rename METHOD, SIGNAL, SLOT to TQ_METHOD, TQ_SIGNAL, TQ_SLOT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit fb401a891f1b426e9419c0cb16403df407138611)
Diffstat (limited to 'src/widgets/qstatusbar.cpp')
| -rw-r--r-- | src/widgets/qstatusbar.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/src/widgets/qstatusbar.cpp b/src/widgets/qstatusbar.cpp index d3d294d2e..f5830d4b8 100644 --- a/src/widgets/qstatusbar.cpp +++ b/src/widgets/qstatusbar.cpp @@ -80,8 +80,8 @@      one that has a time limit:      \code -	connect( loader, SIGNAL(progressMessage(const TQString&)), -		 statusBar(), SLOT(message(const TQString&)) ); +	connect( loader, TQ_SIGNAL(progressMessage(const TQString&)), +		 statusBar(), TQ_SLOT(message(const TQString&)) );  	statusBar()->message("Loading...");  // Initial message  	loader.loadStuff();                  // Emits progress messages @@ -377,7 +377,7 @@ void TQStatusBar::message( const TQString &message, int ms )      if ( !d->timer ) {  	d->timer = new TQTimer( this ); -	connect( d->timer, SIGNAL(timeout()), this, SLOT(clear()) ); +	connect( d->timer, TQ_SIGNAL(timeout()), this, TQ_SLOT(clear()) );      }      if ( ms > 0 ) {  	d->timer->start( ms ); | 
