diff options
Diffstat (limited to 'src/k3bflatbutton.cpp')
-rw-r--r-- | src/k3bflatbutton.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/k3bflatbutton.cpp b/src/k3bflatbutton.cpp index eafc637..68ff3d1 100644 --- a/src/k3bflatbutton.cpp +++ b/src/k3bflatbutton.cpp @@ -53,7 +53,7 @@ K3bFlatButton::K3bFlatButton( TDEAction* a, TQWidget *parent, const char *name ) setText( a->text() ); TQToolTip::add( this, a->toolTip() ); setPixmap( TDEGlobal::iconLoader()->loadIcon( a->icon(), TDEIcon::NoGroup, 32 ) ); - connect( this, TQT_SIGNAL(clicked()), a, TQT_SLOT(activate()) ); + connect( this, TQ_SIGNAL(clicked()), a, TQ_SLOT(activate()) ); } @@ -66,8 +66,8 @@ void K3bFlatButton::init() setMargin(5); setFrameStyle( TQFrame::Box|TQFrame::Plain ); - connect( k3bappcore->themeManager(), TQT_SIGNAL(themeChanged()), this, TQT_SLOT(slotThemeChanged()) ); - connect( kapp, TQT_SIGNAL(appearanceChanged()), this, TQT_SLOT(slotThemeChanged()) ); + connect( k3bappcore->themeManager(), TQ_SIGNAL(themeChanged()), this, TQ_SLOT(slotThemeChanged()) ); + connect( tdeApp, TQ_SIGNAL(appearanceChanged()), this, TQ_SLOT(slotThemeChanged()) ); slotThemeChanged(); } @@ -102,7 +102,7 @@ void K3bFlatButton::leaveEvent( TQEvent* ) void K3bFlatButton::mousePressEvent( TQMouseEvent* e ) { - if( e->button() == Qt::LeftButton ) { + if( e->button() == TQt::LeftButton ) { emit pressed(); m_pressed = true; } @@ -113,7 +113,7 @@ void K3bFlatButton::mousePressEvent( TQMouseEvent* e ) void K3bFlatButton::mouseReleaseEvent( TQMouseEvent* e ) { - if( e->button() == Qt::LeftButton ) { + if( e->button() == TQt::LeftButton ) { if( m_pressed ) emit clicked(); m_pressed = false; |