diff --git a/src/ui_NetParamsEdit.ui b/src/ui_NetParamsEdit.ui
index ea80838..b73ab0f 100644
--- a/src/ui_NetParamsEdit.ui
+++ b/src/ui_NetParamsEdit.ui
@@ -74,7 +74,7 @@
Expanding
-
+
20
20
@@ -327,7 +327,7 @@
Expanding
-
+
20
21
@@ -357,7 +357,7 @@
Expanding
-
+
21
40
@@ -467,7 +467,7 @@
Expanding
-
+
131
21
@@ -605,7 +605,7 @@
Expanding
-
+
130
20
@@ -715,7 +715,7 @@
Expanding
-
+
130
20
@@ -825,7 +825,7 @@
Expanding
-
+
130
20
@@ -935,7 +935,7 @@
Expanding
-
+
130
20
@@ -1026,7 +1026,7 @@
Expanding
-
+
31
20
diff --git a/src/ui_NetParamsWizard.ui b/src/ui_NetParamsWizard.ui
index 1c933c4..9ee709a 100644
--- a/src/ui_NetParamsWizard.ui
+++ b/src/ui_NetParamsWizard.ui
@@ -85,7 +85,7 @@
Expanding
-
+
21
100
@@ -118,7 +118,7 @@
Expanding
-
+
101
21
@@ -135,7 +135,7 @@
Expanding
-
+
61
21
@@ -168,7 +168,7 @@
Expanding
-
+
80
21
@@ -185,7 +185,7 @@
Expanding
-
+
60
31
@@ -202,7 +202,7 @@
Expanding
-
+
21
20
@@ -431,7 +431,7 @@
Expanding
-
+
60
31
@@ -448,7 +448,7 @@
Expanding
-
+
50
21
@@ -465,7 +465,7 @@
Expanding
-
+
21
16
@@ -551,7 +551,7 @@
Expanding
-
+
122
31
@@ -568,7 +568,7 @@
Expanding
-
+
150
21
@@ -593,7 +593,7 @@
Expanding
-
+
31
16
@@ -610,7 +610,7 @@
Expanding
-
+
50
21
@@ -627,7 +627,7 @@
Expanding
-
+
30
21
@@ -649,7 +649,7 @@
wepKey
-
+
140
0
@@ -690,7 +690,7 @@
Expanding
-
+
31
54
@@ -707,7 +707,7 @@
Expanding
-
+
80
21
@@ -724,7 +724,7 @@
Expanding
-
+
49
21
@@ -754,7 +754,7 @@
wpaKey
-
+
140
0
@@ -790,7 +790,7 @@
Expanding
-
+
80
21
@@ -807,7 +807,7 @@
Expanding
-
+
60
31
diff --git a/src/ui_main.ui b/src/ui_main.ui
index 8db0707..acdeb3e 100644
--- a/src/ui_main.ui
+++ b/src/ui_main.ui
@@ -23,7 +23,7 @@
buttonOptions
-
+
0
0
@@ -75,7 +75,7 @@
false
-
+
120
0
@@ -129,7 +129,7 @@
Expanding
-
+
21
120
@@ -184,7 +184,7 @@
0
-
+
0
20
@@ -209,7 +209,7 @@
0
-
+
60
0
@@ -350,7 +350,7 @@
0
-
+
0
20
@@ -366,7 +366,7 @@
WordBreak|AlignVCenter
-<p><b>tqStatus Bar</b></p>
+<p><b>Status Bar</b></p>
<p>Messages describing current process are shown in this area.</p>
@@ -521,7 +521,7 @@
Fixed
-
+
21
20
@@ -538,7 +538,7 @@
Fixed
-
+
21
20
@@ -625,7 +625,7 @@
Expanding
-
+
101
21
@@ -642,7 +642,7 @@
Expanding
-
+
118
21
@@ -679,7 +679,7 @@
Expanding
-
+
201
21
@@ -713,7 +713,7 @@
Expanding
-
+
20
31
@@ -745,7 +745,7 @@
setDeviceList()
-updatetqStatus(char sts)
+updateStatus(char sts)
diff --git a/src/waconfig.cpp b/src/waconfig.cpp
index bb8cc97..4dc5d41 100644
--- a/src/waconfig.cpp
+++ b/src/waconfig.cpp
@@ -16,7 +16,7 @@ WAConfig *WAConfig::self()
}
WAConfig::WAConfig( )
- : KConfigSkeleton( TQString::tqfromLatin1( "wlassistantrc" ) )
+ : KConfigSkeleton( TQString::fromLatin1( "wlassistantrc" ) )
{
mSelf = this;
}
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);
}
}
diff --git a/src/wlassistant.h b/src/wlassistant.h
index 4951e8f..ec094e8 100644
--- a/src/wlassistant.h
+++ b/src/wlassistant.h
@@ -112,7 +112,7 @@ protected slots:
virtual void removeNetParams();
virtual void updateNetParams();
virtual void itemAction();
- virtual void checkConnectiontqStatus();
+ virtual void checkConnectionStatus();
virtual void updateConnectButton(TQListViewItem* lvi);
virtual void setMouseBehaviour();
virtual void togglePage(bool options );