diff options
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); } } |