diff options
author | Timothy Pearson <[email protected]> | 2011-12-18 18:10:44 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-18 18:10:44 -0600 |
commit | 15c49bc5b6d612d4021619c4f71c8bca1d692e28 (patch) | |
tree | d402577f3db7642d11fd7a5276bf5e8b474ffce0 /src/knemod/interface.cpp | |
parent | d979df2f36840b03425e5dc40907f16d10fe4b5c (diff) | |
download | knemo-15c49bc5b6d612d4021619c4f71c8bca1d692e28.tar.gz knemo-15c49bc5b6d612d4021619c4f71c8bca1d692e28.zip |
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'src/knemod/interface.cpp')
-rw-r--r-- | src/knemod/interface.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/knemod/interface.cpp b/src/knemod/interface.cpp index eefb658..8e97ef1 100644 --- a/src/knemod/interface.cpp +++ b/src/knemod/interface.cpp @@ -52,13 +52,13 @@ Interface::Interface( TQString ifname, mPlotterSettings( plotterSettings ) { connect( &mMonitor, TQT_SIGNAL( statusChanged( int ) ), - &mIcon, TQT_SLOT( updatetqStatus( int ) ) ); + &mIcon, TQT_SLOT( updateStatus( int ) ) ); connect( &mMonitor, TQT_SIGNAL( available( int ) ), - &mIcon, TQT_SLOT( updateTraytqStatus( int ) ) ); + &mIcon, TQT_SLOT( updateTrayStatus( int ) ) ); connect( &mMonitor, TQT_SIGNAL( notAvailable( int ) ), - &mIcon, TQT_SLOT( updateTraytqStatus( int ) ) ); + &mIcon, TQT_SLOT( updateTrayStatus( int ) ) ); connect( &mMonitor, TQT_SIGNAL( notExisting( int ) ), - &mIcon, TQT_SLOT( updateTraytqStatus( int ) ) ); + &mIcon, TQT_SLOT( updateTrayStatus( int ) ) ); connect( &mMonitor, TQT_SIGNAL( available( int ) ), this, TQT_SLOT( setStartTime( int ) ) ); connect( &mMonitor, TQT_SIGNAL( statusChanged( int ) ), @@ -92,9 +92,9 @@ Interface::~Interface() void Interface::configChanged() { // UNKNOWN_STATE to avoid notification - mIcon.updateTraytqStatus( UNKNOWN_STATE ); + mIcon.updateTrayStatus( UNKNOWN_STATE ); // handle changed iconset by user - mIcon.updatetqStatus( mState ); + mIcon.updateStatus( mState ); mIcon.updateToolTip(); mIcon.updateMenu(); @@ -127,12 +127,12 @@ void Interface::configChanged() void Interface::activateMonitor() { - mMonitor.checktqStatus( this ); + mMonitor.checkStatus( this ); } void Interface::setStartTime( int ) { - mStartTime.setDate( TQDate::tqcurrentDate() ); + mStartTime.setDate( TQDate::currentDate() ); mStartTime.setTime( TQTime::currentTime() ); } |