summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:21:46 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:21:46 -0600
commite0eeb536f89fc81b09bfefe46e3b8d2333793299 (patch)
tree6bdf4a21fecef6df6f7970fab1ee1b95a397f325 /src
parent7c9e12e9005444cbc8fd77e30ce0f8c41d03433d (diff)
downloadkpowersave-e0eeb536f89fc81b09bfefe46e3b8d2333793299.tar.gz
kpowersave-e0eeb536f89fc81b09bfefe46e3b8d2333793299.zip
Additional kde to tde renaming
Diffstat (limited to 'src')
-rw-r--r--src/CMakeLists.txt4
-rw-r--r--src/Makefile.am2
-rw-r--r--src/kpowersave.cpp6
3 files changed, 6 insertions, 6 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 3bddbfe..41cad7d 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -34,9 +34,9 @@ install( FILES eventsrc DESTINATION ${DATA_INSTALL_DIR}/kpowersave )
install( FILES config/kpowersaverc_default RENAME kpowersaverc DESTINATION ${CONFIG_INSTALL_DIR} )
-##### kpowersave (kdeinit) ######################
+##### kpowersave (tdeinit) ######################
-tde_add_kdeinit_executable( kpowersave AUTOMOC
+tde_add_tdeinit_executable( kpowersave AUTOMOC
SOURCES
dummy.cpp autodimm.cpp autosuspend.cpp
blacklistedit_Dialog.ui blacklisteditdialog.cpp
diff --git a/src/Makefile.am b/src/Makefile.am
index a4d826f..0315ff0 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -40,7 +40,7 @@ KDE_ICON = kpowersave
bin_PROGRAMS =
lib_LTLIBRARIES =
-kdeinit_LTLIBRARIES = kpowersave.la
+tdeinit_LTLIBRARIES = kpowersave.la
# the application source, library search path, and link libraries
kpowersave_la_SOURCES = \
diff --git a/src/kpowersave.cpp b/src/kpowersave.cpp
index 5b873cc..fbbfc17 100644
--- a/src/kpowersave.cpp
+++ b/src/kpowersave.cpp
@@ -510,7 +510,7 @@ void kpowersave::updateTooltip(){
/*!
* \b TQT_SLOT to starts the Yast2-power-management module. This called by the menuentry
* with ID \ref YAST_MODULE_MENU_ID, named "Start YaST2 Power Management Module".
- * It create a new KProcess and execute "/sbin/yast2 power-management" with kdesu.
+ * It create a new KProcess and execute "/sbin/yast2 power-management" with tdesu.
*/
void kpowersave::do_config(){
kdDebugFuncIn(trace);
@@ -519,7 +519,7 @@ void kpowersave::do_config(){
delete yast2;
yast2 = new KProcess;
- *yast2 << "kdesu" << "--nonewdcop" << "/sbin/yast2" << "power-management";
+ *yast2 << "tdesu" << "--nonewdcop" << "/sbin/yast2" << "power-management";
connect(yast2, TQT_SIGNAL(processExited(KProcess *)),
TQT_SLOT(slotConfigProcessExited(KProcess *)));
@@ -648,7 +648,7 @@ void kpowersave::observeConfigDlg(){
}
/*!
- * \b TQT_SLOT which called from \ref do_config() if the 'kdesu yast2' KProcess exited.
+ * \b TQT_SLOT which called from \ref do_config() if the 'tdesu yast2' KProcess exited.
* This function control the return value and display if needed a errormessage on failure.
*/
void kpowersave::slotConfigProcessExited(KProcess *proc){