summaryrefslogtreecommitdiffstats
path: root/wifi
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:31:27 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:31:27 -0600
commit28ccd51885bd98e62c1756453c3fc638b429e5ee (patch)
tree309d7dfbc38b1253fc2aceca34036f8f4eedd27b /wifi
parent8a9ab45627c50ab0d33e9edf86fe8988e02709cb (diff)
downloadtdenetwork-28ccd51885bd98e62c1756453c3fc638b429e5ee.tar.gz
tdenetwork-28ccd51885bd98e62c1756453c3fc638b429e5ee.zip
Additional kde to tde renaming
Diffstat (limited to 'wifi')
-rw-r--r--wifi/CMakeLists.txt2
-rw-r--r--wifi/kwifimanager.cpp6
-rw-r--r--wifi/kwireless/CMakeLists.txt2
-rw-r--r--wifi/networkscanning.cpp2
4 files changed, 6 insertions, 6 deletions
diff --git a/wifi/CMakeLists.txt b/wifi/CMakeLists.txt
index cddd1dea..1e1ae90b 100644
--- a/wifi/CMakeLists.txt
+++ b/wifi/CMakeLists.txt
@@ -48,6 +48,6 @@ tde_add_executable( kwifimanager AUTOMOC
interface_dcop.skel networkscanning.cpp kwifimanager.cpp locator.cpp
main.cpp picture.cpp speed.cpp statistics.cpp status.cpp strength.cpp
asusled.cpp
- LINK kdeui-shared ${ARTS_LIBRARIES} ${IW_LIBRARY}
+ LINK tdeui-shared ${ARTS_LIBRARIES} ${IW_LIBRARY}
DESTINATION ${BIN_INSTALL_DIR}
)
diff --git a/wifi/kwifimanager.cpp b/wifi/kwifimanager.cpp
index b7d49abb..7fe46f95 100644
--- a/wifi/kwifimanager.cpp
+++ b/wifi/kwifimanager.cpp
@@ -457,9 +457,9 @@ KWiFiManagerApp::slotDisableRadio ()
// FIXME my Cisco Aironet 350 has two interfaces eth1 and wifi1,
// kwifimanager works on wifi 1 where txpower does not work -- jriddell
- //*disablePower << "kdesu" << "iwconfig" << "eth1" << "txpower" << onOrOff;
+ //*disablePower << "tdesu" << "iwconfig" << "eth1" << "txpower" << onOrOff;
- *disablePower << "kdesu" << "iwconfig" << interface << "txpower" << onOrOff;
+ *disablePower << "tdesu" << "iwconfig" << interface << "txpower" << onOrOff;
connect( disablePower, TQT_SIGNAL(processExited(KProcess*)), this, TQT_SLOT(slotDisablePowerProcessExited()) );
disablePower->start(KProcess::NotifyOnExit);
}
@@ -558,7 +558,7 @@ void
KWiFiManagerApp::slotStartConfigEditor ()
{
KProcess startConf;
- startConf << "kdesu" << locate("exe", "kcmshell") << "kcmwifi";
+ startConf << "tdesu" << locate("exe", "kcmshell") << "kcmwifi";
startConf.start (KProcess::DontCare);
}
diff --git a/wifi/kwireless/CMakeLists.txt b/wifi/kwireless/CMakeLists.txt
index 5acfb5ae..e6a9bad3 100644
--- a/wifi/kwireless/CMakeLists.txt
+++ b/wifi/kwireless/CMakeLists.txt
@@ -32,6 +32,6 @@ tde_add_kpart( libkwireless AUTOMOC
SOURCES
kwireless.cpp kwirelesswidget.cpp linuxwirelesswidget.cpp
propertytablebase.ui propertytable.cpp
- LINK kdeui-shared ${IW_LIBRARY}
+ LINK tdeui-shared ${IW_LIBRARY}
DESTINATION ${PLUGIN_INSTALL_DIR}
)
diff --git a/wifi/networkscanning.cpp b/wifi/networkscanning.cpp
index 429cb525..0e2a42a8 100644
--- a/wifi/networkscanning.cpp
+++ b/wifi/networkscanning.cpp
@@ -144,7 +144,7 @@ NetworkScanning::switchToNetwork()
delete tempfile; // autoDeletion off, so the file remains on disk
KProcess switchProc;
- switchProc << "kdesu" << tempfilename;
+ switchProc << "tdesu" << tempfilename;
switchProc.start( KProcess::Block );
remove(tempfilename.ascii());