summaryrefslogtreecommitdiffstats
path: root/amarok/src/tracktooltip.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'amarok/src/tracktooltip.cpp')
-rw-r--r--amarok/src/tracktooltip.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/amarok/src/tracktooltip.cpp b/amarok/src/tracktooltip.cpp
index 08cae102..754a28e3 100644
--- a/amarok/src/tracktooltip.cpp
+++ b/amarok/src/tracktooltip.cpp
@@ -40,21 +40,21 @@ TrackToolTip *TrackToolTip::instance()
TrackToolTip::TrackToolTip(): m_haspos( false )
{
- connect( CollectionDB::instance(), TQT_SIGNAL( coverChanged( const TQString &, const TQString & ) ),
- this, TQT_SLOT( slotCoverChanged( const TQString &, const TQString & ) ) );
- connect( CollectionDB::instance(), TQT_SIGNAL( imageFetched( const TQString & ) ),
- this, TQT_SLOT( slotImageChanged( const TQString & ) ) );
- connect( Playlist::instance(), TQT_SIGNAL( columnsChanged() ), this, TQT_SLOT( slotUpdate() ) );
- connect( CollectionDB::instance(), TQT_SIGNAL( scoreChanged( const TQString&, float ) ),
- this, TQT_SLOT( slotUpdate( const TQString& ) ) );
- connect( CollectionDB::instance(), TQT_SIGNAL( ratingChanged( const TQString&, int ) ),
- this, TQT_SLOT( slotUpdate( const TQString& ) ) );
+ connect( CollectionDB::instance(), TQ_SIGNAL( coverChanged( const TQString &, const TQString & ) ),
+ this, TQ_SLOT( slotCoverChanged( const TQString &, const TQString & ) ) );
+ connect( CollectionDB::instance(), TQ_SIGNAL( imageFetched( const TQString & ) ),
+ this, TQ_SLOT( slotImageChanged( const TQString & ) ) );
+ connect( Playlist::instance(), TQ_SIGNAL( columnsChanged() ), this, TQ_SLOT( slotUpdate() ) );
+ connect( CollectionDB::instance(), TQ_SIGNAL( scoreChanged( const TQString&, float ) ),
+ this, TQ_SLOT( slotUpdate( const TQString& ) ) );
+ connect( CollectionDB::instance(), TQ_SIGNAL( ratingChanged( const TQString&, int ) ),
+ this, TQ_SLOT( slotUpdate( const TQString& ) ) );
// Only connect this once -- m_tags exists for the lifetime of this instance
- connect( &m_tags.moodbar(), TQT_SIGNAL( jobEvent( int ) ),
- TQT_SLOT( slotMoodbarEvent() ) );
+ connect( &m_tags.moodbar(), TQ_SIGNAL( jobEvent( int ) ),
+ TQ_SLOT( slotMoodbarEvent() ) );
// This is so the moodbar can be re-rendered when AlterMood is changed
- connect( App::instance(), TQT_SIGNAL( moodbarPrefs( bool, bool, int, bool ) ),
- TQT_SLOT( slotMoodbarEvent() ) );
+ connect( App::instance(), TQ_SIGNAL( moodbarPrefs( bool, bool, int, bool ) ),
+ TQ_SLOT( slotMoodbarEvent() ) );
clear();
}