summaryrefslogtreecommitdiffstats
path: root/src/wlassistant.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-18 18:15:28 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-06-27 04:12:43 +0200
commit86f58f6a29b7352da65d1bd8670eed533a0f6856 (patch)
tree0b95d15701baa5d36e855460ebc8c95708b9b831 /src/wlassistant.cpp
parentf10327b809c5d47ac651ff9610e0f1f892afedc0 (diff)
downloadwlassistant-86f58f6a29b7352da65d1bd8670eed533a0f6856.tar.gz
wlassistant-86f58f6a29b7352da65d1bd8670eed533a0f6856.zip
Rename old tq methods that no longer need a unique name
(cherry picked from commit 896459f74f89281a69958d130ccc490a369d33ce)
Diffstat (limited to 'src/wlassistant.cpp')
-rw-r--r--src/wlassistant.cpp6
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);
}
}