diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-04 10:28:49 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-04 10:28:49 +0900 |
| commit | bea15ca3009c2f8505bfa10445c1dc2fc43a4ffe (patch) | |
| tree | 8911427e76b2ea1dc7d98cf2a9a0f2da987802b5 /src/qeffects.cpp | |
| parent | 7b0920cd4180823f7a42350d1bdb914d697f4b9c (diff) | |
| download | basket-bea15ca3009c2f8505bfa10445c1dc2fc43a4ffe.tar.gz basket-bea15ca3009c2f8505bfa10445c1dc2fc43a4ffe.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/qeffects.cpp')
| -rw-r--r-- | src/qeffects.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qeffects.cpp b/src/qeffects.cpp index 73dbf6a..8d67a95 100644 --- a/src/qeffects.cpp +++ b/src/qeffects.cpp @@ -125,7 +125,7 @@ void TQAlphaWidget::run( int time ) show(); setEnabled(FALSE); - connect( &anim, TQT_SIGNAL(timeout()), this, TQT_SLOT(render())); + connect( &anim, TQ_SIGNAL(timeout()), this, TQ_SLOT(render())); anim.start( 1 ); } else { duration = 0; @@ -434,7 +434,7 @@ void TQRollEffect::run( int time ) duration = TQMIN( TQMAX( dist/3, 50 ), 120 ); } - connect( &anim, TQT_SIGNAL(timeout()), this, TQT_SLOT(scroll())); + connect( &anim, TQ_SIGNAL(timeout()), this, TQ_SLOT(scroll())); widget->setWState( WState_Visible ); |
