diff options
Diffstat (limited to 'amarok/src/osd.cpp')
-rw-r--r-- | amarok/src/osd.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/amarok/src/osd.cpp b/amarok/src/osd.cpp index 35407777..74bfa51e 100644 --- a/amarok/src/osd.cpp +++ b/amarok/src/osd.cpp @@ -64,9 +64,9 @@ OSDWidget::OSDWidget( TQWidget *parent, const char *name ) setBackgroundMode( NoBackground ); unsetColors(); - connect( m_timer, TQT_SIGNAL(timeout()), TQT_SLOT(hide()) ); - connect( CollectionDB::instance(), TQT_SIGNAL( ratingChanged( const TQString&, int ) ), - this, TQT_SLOT( ratingChanged( const TQString&, int ) ) ); + connect( m_timer, TQ_SIGNAL(timeout()), TQ_SLOT(hide()) ); + connect( CollectionDB::instance(), TQ_SIGNAL( ratingChanged( const TQString&, int ) ), + this, TQ_SLOT( ratingChanged( const TQString&, int ) ) ); //or crashes, KWin bug I think, crashes in TQWidget::icon() kapp->setTopWidget( this ); @@ -707,10 +707,10 @@ void OSDPreviewWidget::mouseMoveEvent( TQMouseEvent *e ) Amarok::OSD::OSD(): OSDWidget( 0 ) { - 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( 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& ) ) ); } void |