diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-18 18:15:28 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-18 18:15:28 -0600 |
commit | 896459f74f89281a69958d130ccc490a369d33ce (patch) | |
tree | 6aca58c733bdd6649d0516bfa692ac94a6fc11c3 /src/wlassistant.cpp | |
parent | 5e82c5964c1b4dc9c8cf3f10bbb83c34f4ec7a02 (diff) | |
download | wlassistant-896459f74f89281a69958d130ccc490a369d33ce.tar.gz wlassistant-896459f74f89281a69958d130ccc490a369d33ce.zip |
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'src/wlassistant.cpp')
-rw-r--r-- | src/wlassistant.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wlassistant.cpp b/src/wlassistant.cpp index caafb37..ef59019 100644 --- a/src/wlassistant.cpp +++ b/src/wlassistant.cpp @@ -191,7 +191,7 @@ void WirelessAssistant::init() timerGui = new TQTimer(); timerConnectionCheck = new TQTimer(); connect( timerGui, TQT_SIGNAL(timeout()), TQT_SLOT(updateConnectedItem()) ); - connect( timerConnectionCheck, TQT_SIGNAL(timeout()), TQT_SLOT(checkConnectiontqStatus()) ); + connect( timerConnectionCheck, TQT_SIGNAL(timeout()), TQT_SLOT(checkConnectionStatus()) ); //////////////////////// ///// DETECT & SET PATHS ///// @@ -213,7 +213,7 @@ void WirelessAssistant::init() TQTimer::singleShot( 0, this, TQT_SLOT(netScan()) ); } -void WirelessAssistant::checkConnectiontqStatus() +void WirelessAssistant::checkConnectionStatus() { TQListViewItem* lvi; if (groupAPs) lvi = getItemByEssid( WATools::essid(NetParams.iface.ascii())); @@ -291,7 +291,7 @@ void WirelessAssistant::netScan() timerConnectionCheck->stop(); //stop while scanning. netScan( NetParams ); if (netList->childCount() > 0) { - TQTimer::singleShot( 0, this, TQT_SLOT(checkConnectiontqStatus()) ); + TQTimer::singleShot( 0, this, TQT_SLOT(checkConnectionStatus()) ); timerConnectionCheck->start(WA_CONNECTION_CHECK_INTERVAL); } } |