diff options
Diffstat (limited to 'wifi')
-rw-r--r-- | wifi/CMakeLists.txt | 2 | ||||
-rw-r--r-- | wifi/kwifimanager.cpp | 6 | ||||
-rw-r--r-- | wifi/kwireless/CMakeLists.txt | 2 | ||||
-rw-r--r-- | wifi/networkscanning.cpp | 2 |
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()); |