summaryrefslogtreecommitdiffstats
path: root/amarok/src/statusbar/toggleLabel.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-02 11:36:41 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-15 10:10:50 +0900
commitf52f91d7ba8f99e3b9d33d4404d9f21a8b3fb497 (patch)
tree83fa1908b581e4c8a7b14ea3204b8f40d39e296b /amarok/src/statusbar/toggleLabel.h
parent00fe96f0930e9cd78404576f0812f71a06d42574 (diff)
downloadamarok-f52f91d7ba8f99e3b9d33d4404d9f21a8b3fb497.tar.gz
amarok-f52f91d7ba8f99e3b9d33d4404d9f21a8b3fb497.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'amarok/src/statusbar/toggleLabel.h')
-rw-r--r--amarok/src/statusbar/toggleLabel.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/amarok/src/statusbar/toggleLabel.h b/amarok/src/statusbar/toggleLabel.h
index a815fb05..20e3ec98 100644
--- a/amarok/src/statusbar/toggleLabel.h
+++ b/amarok/src/statusbar/toggleLabel.h
@@ -53,9 +53,9 @@ class ToggleLabel : public TQLabel
, m_tooltipShowing( false )
, m_tooltipHidden( false )
{
- connect( this, TQT_SIGNAL(toggled( bool )), action, TQT_SLOT(setChecked( bool )) );
- connect( action, TQT_SIGNAL(toggled( bool )), this, TQT_SLOT(setChecked( bool )) );
- connect( action, TQT_SIGNAL(enabled( bool )), this, TQT_SLOT(setEnabled( bool )) );
+ connect( this, TQ_SIGNAL(toggled( bool )), action, TQ_SLOT(setChecked( bool )) );
+ connect( action, TQ_SIGNAL(toggled( bool )), this, TQ_SLOT(setChecked( bool )) );
+ connect( action, TQ_SIGNAL(enabled( bool )), this, TQ_SLOT(setEnabled( bool )) );
setChecked( isChecked() );
}
@@ -79,7 +79,7 @@ class ToggleLabel : public TQLabel
{
//Show the tooltip after 1/2 second
m_tooltipHidden = false;
- TQTimer::singleShot( 500, this, TQT_SLOT(aboutToShow()) );
+ TQTimer::singleShot( 500, this, TQ_SLOT(aboutToShow()) );
}
void leaveEvent( TQEvent* )