summaryrefslogtreecommitdiffstats
path: root/kdesu/kdesu
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:28:57 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:28:57 -0600
commit7574a7287e2e121c9d5c91a5f4ea38c5b3ae2a04 (patch)
treeb7c6396f4f7fe78dcd49424bff707e977541de18 /kdesu/kdesu
parent66c0fa70796c1989a9f3adb0c5c0ad799ade48ca (diff)
downloadtdebase-7574a7287e2e121c9d5c91a5f4ea38c5b3ae2a04.tar.gz
tdebase-7574a7287e2e121c9d5c91a5f4ea38c5b3ae2a04.zip
Additional kde to tde renaming
Diffstat (limited to 'kdesu/kdesu')
-rw-r--r--kdesu/kdesu/CMakeLists.txt8
-rw-r--r--kdesu/kdesu/Makefile.am16
-rw-r--r--kdesu/kdesu/kdesu.cpp14
-rw-r--r--kdesu/kdesu/sudlg.cpp4
-rw-r--r--kdesu/kdesu/sudlg.h2
5 files changed, 22 insertions, 22 deletions
diff --git a/kdesu/kdesu/CMakeLists.txt b/kdesu/kdesu/CMakeLists.txt
index b18fbfb57..7eb878140 100644
--- a/kdesu/kdesu/CMakeLists.txt
+++ b/kdesu/kdesu/CMakeLists.txt
@@ -21,10 +21,10 @@ link_directories(
)
-##### kdesu (executable) ########################
+##### tdesu (executable) ########################
-tde_add_executable( kdesu AUTOMOC
- SOURCES kdesu.cpp sudlg.cpp
- LINK kdesu-shared kio-shared
+tde_add_executable( tdesu AUTOMOC
+ SOURCES tdesu.cpp sudlg.cpp
+ LINK tdesu-shared kio-shared
DESTINATION ${BIN_INSTALL_DIR}
)
diff --git a/kdesu/kdesu/Makefile.am b/kdesu/kdesu/Makefile.am
index 4b18e7580..f322f0a6f 100644
--- a/kdesu/kdesu/Makefile.am
+++ b/kdesu/kdesu/Makefile.am
@@ -1,15 +1,15 @@
-## Makefile.am for kdesu by Geert Jansen
+## Makefile.am for tdesu by Geert Jansen
INCLUDES= $(all_includes)
-## kdesu
-bin_PROGRAMS = kdesu
-kdesu_SOURCES = kdesu.cpp sudlg.cpp
-kdesu_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor
-kdesu_LDADD = $(LIB_KIO) -lkdesu
-kdesu_METASOURCES = AUTO
+## tdesu
+bin_PROGRAMS = tdesu
+tdesu_SOURCES = tdesu.cpp sudlg.cpp
+tdesu_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor
+tdesu_LDADD = $(LIB_KIO) -ltdesu
+tdesu_METASOURCES = AUTO
noinst_HEADERS = sudlg.h
## Messages
messages:
- $(XGETTEXT) $(kdesu_SOURCES) -o $(podir)/kdesu.pot
+ $(XGETTEXT) $(tdesu_SOURCES) -o $(podir)/tdesu.pot
diff --git a/kdesu/kdesu/kdesu.cpp b/kdesu/kdesu/kdesu.cpp
index 3d18b8764..d6aeebc6f 100644
--- a/kdesu/kdesu/kdesu.cpp
+++ b/kdesu/kdesu/kdesu.cpp
@@ -1,6 +1,6 @@
/* vi: ts=8 sts=4 sw=4
*
- * This file is part of the KDE project, module kdesu.
+ * This file is part of the KDE project, module tdesu.
* Copyright (C) 1998 Pietro Iglio <iglio@fub.it>
* Copyright (C) 1999,2000 Geert Jansen <jansen@kde.org>
*/
@@ -39,9 +39,9 @@
#include <krun.h>
#include <kuser.h>
-#include <kdesu/defaults.h>
-#include <kdesu/su.h>
-#include <kdesu/client.h>
+#include <tdesu/defaults.h>
+#include <tdesu/su.h>
+#include <tdesu/client.h>
#include "sudlg.h"
@@ -96,7 +96,7 @@ int main(int argc, char *argv[])
if (duser && duser[0])
options[3].def = duser;
- KAboutData aboutData("kdesu", I18N_NOOP("KDE su"),
+ KAboutData aboutData("tdesu", I18N_NOOP("KDE su"),
Version, I18N_NOOP("Runs a program with elevated privileges."),
KAboutData::License_Artistic,
"Copyright (c) 1998-2000 Geert Jansen, Pietro Iglio");
@@ -108,7 +108,7 @@ int main(int argc, char *argv[])
KCmdLineArgs::init(argc, argv, &aboutData);
KCmdLineArgs::addCmdLineOptions(options);
KApplication::disableAutoDcopRegistration();
- // kdesu doesn't process SM events, so don't even connect to ksmserver
+ // tdesu doesn't process SM events, so don't even connect to ksmserver
TQCString session_manager = getenv( "SESSION_MANAGER" );
unsetenv( "SESSION_MANAGER" );
KApplication app;
@@ -272,7 +272,7 @@ static int startApp()
just_started = true;
}
- // Try to exec the command with kdesud.
+ // Try to exec the command with tdesud.
bool keep = !args->isSet("n") && have_daemon;
bool terminal = true;
bool new_dcop = args->isSet("newdcop");
diff --git a/kdesu/kdesu/sudlg.cpp b/kdesu/kdesu/sudlg.cpp
index 483633739..cfda9168c 100644
--- a/kdesu/kdesu/sudlg.cpp
+++ b/kdesu/kdesu/sudlg.cpp
@@ -1,6 +1,6 @@
/* vi: ts=8 sts=4 sw=4
*
- * This file is part of the KDE project, module kdesu.
+ * This file is part of the KDE project, module tdesu.
* Copyright (C) 2000 Geert Jansen <jansen@kde.org>
*/
@@ -11,7 +11,7 @@
#include <klocale.h>
#include <kmessagebox.h>
-#include <kdesu/su.h>
+#include <tdesu/su.h>
#include "sudlg.h"
KDEsuDialog::KDEsuDialog(TQCString user, TQCString auth_user, bool enableKeep,const TQString& icon, bool withIgnoreButton)
diff --git a/kdesu/kdesu/sudlg.h b/kdesu/kdesu/sudlg.h
index 4277ca67c..64a283a0e 100644
--- a/kdesu/kdesu/sudlg.h
+++ b/kdesu/kdesu/sudlg.h
@@ -1,6 +1,6 @@
/* vi: ts=8 sts=4 sw=4
*
- * This file is part of the KDE project, module kdesu.
+ * This file is part of the KDE project, module tdesu.
* Copyright (C) 2000 Geert Jansen <jansen@kde.org>
*/