diff options
Diffstat (limited to 'src/knemod/interfaceicon.cpp')
-rw-r--r-- | src/knemod/interfaceicon.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/knemod/interfaceicon.cpp b/src/knemod/interfaceicon.cpp index cebcbc2..2508bcd 100644 --- a/src/knemod/interfaceicon.cpp +++ b/src/knemod/interfaceicon.cpp @@ -137,7 +137,7 @@ void InterfaceIcon::updateMenu() if ( settings.activateStatistics ) { menu->insertItem( i18n( "Open &Statistics" ), this, - TQT_SIGNAL( statisticsSelected() ) ); + TQ_SIGNAL( statisticsSelected() ) ); } // If the user wants custom commands, add them. @@ -233,16 +233,16 @@ void InterfaceIcon::updateTrayStatus( int previousState, bool notify ) mTray = new InterfaceTray( mInterface->getName() ); TQToolTip::add( mTray, mInterface->getName() ); TDEPopupMenu* menu = mTray->contextMenu(); - connect( menu, TQT_SIGNAL( activated( int ) ), - this, TQT_SLOT( menuActivated( int ) ) ); - connect( mTray, TQT_SIGNAL( leftClicked() ), - mInterface, TQT_SLOT( showStatusDialog() ) ); - connect( mTray, TQT_SIGNAL( graphSelected( bool ) ), - mInterface, TQT_SLOT( showSignalPlotter( bool ) ) ); - connect( mTray, TQT_SIGNAL( configSelected() ), - this, TQT_SLOT( showConfigDialog() ) ); - connect( mTray, TQT_SIGNAL( iconResized() ), - this, TQT_SLOT( resizeIcon() ) ); + connect( menu, TQ_SIGNAL( activated( int ) ), + this, TQ_SLOT( menuActivated( int ) ) ); + connect( mTray, TQ_SIGNAL( leftClicked() ), + mInterface, TQ_SLOT( showStatusDialog() ) ); + connect( mTray, TQ_SIGNAL( graphSelected( bool ) ), + mInterface, TQ_SLOT( showSignalPlotter( bool ) ) ); + connect( mTray, TQ_SIGNAL( configSelected() ), + this, TQ_SLOT( showConfigDialog() ) ); + connect( mTray, TQ_SIGNAL( iconResized() ), + this, TQ_SLOT( resizeIcon() ) ); updateStatus( mInterface->getState() ); updateToolTip(); |