summaryrefslogtreecommitdiffstats
path: root/kdessh
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:32:00 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:32:00 -0600
commit27f2cfdc57b75ea3994e31ad436464353d966cdd (patch)
tree0aab4fe14ca3ea9071b7a0d97529996e5bb35440 /kdessh
parent73dc36225d414b2108708fac11960774f74a3a8a (diff)
downloadtdeutils-27f2cfdc57b75ea3994e31ad436464353d966cdd.tar.gz
tdeutils-27f2cfdc57b75ea3994e31ad436464353d966cdd.zip
Additional kde to tde renaming
Diffstat (limited to 'kdessh')
-rw-r--r--kdessh/Makefile.am4
-rw-r--r--kdessh/kdessh.cpp12
-rw-r--r--kdessh/sshdlg.cpp6
-rw-r--r--kdessh/sshdlg.h2
4 files changed, 12 insertions, 12 deletions
diff --git a/kdessh/Makefile.am b/kdessh/Makefile.am
index 184bb86..09a20df 100644
--- a/kdessh/Makefile.am
+++ b/kdessh/Makefile.am
@@ -6,8 +6,8 @@ INCLUDES= $(all_includes)
## kdessh
bin_PROGRAMS = kdessh
kdessh_SOURCES = kdessh.cpp sshdlg.cpp
-kdessh_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor
-kdessh_LDADD = $(LIB_KDEUI) -lkdesu
+kdessh_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor
+kdessh_LDADD = $(LIB_KDEUI) -ltdesu
kdessh_METASOURCES = AUTO
noinst_HEADERS = sshdlg.h
diff --git a/kdessh/kdessh.cpp b/kdessh/kdessh.cpp
index 438aa33..a3d5003 100644
--- a/kdessh/kdessh.cpp
+++ b/kdessh/kdessh.cpp
@@ -2,7 +2,7 @@
*
* $Id$
*
- * 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>
*/
@@ -27,9 +27,9 @@
#include <kcmdlineargs.h>
#include <kmessagebox.h>
-#include <kdesu/ssh.h>
-#include <kdesu/client.h>
-#include <kdesu/defaults.h>
+#include <tdesu/ssh.h>
+#include <tdesu/client.h>
+#include <tdesu/defaults.h>
#include "sshdlg.h"
@@ -38,7 +38,7 @@ static KCmdLineOptions options[] =
{ "+host", I18N_NOOP("Specifies the remote host"), 0 },
{ "+command", I18N_NOOP("The command to run"), 0 },
{ "u <user>", I18N_NOOP("Specifies the target uid"), 0 },
- { "s <path>", I18N_NOOP("Specify remote stub location"), "kdesu_stub" },
+ { "s <path>", I18N_NOOP("Specify remote stub location"), "tdesu_stub" },
{ "n", I18N_NOOP("Do not keep password"), 0 },
{ "q", I18N_NOOP("Stop the daemon (forgets all passwords)"), 0 },
{ "t", I18N_NOOP("Enable terminal output (no password keeping)"), 0 },
@@ -128,7 +128,7 @@ int main(int argc, char *argv[])
have_daemon = false;
}
- // Try to exec the command with kdesud?
+ // Try to exec the command with tdesud?
bool keep = !args->isSet("n") && have_daemon;
bool terminal = args->isSet("t");
if (keep && !terminal)
diff --git a/kdessh/sshdlg.cpp b/kdessh/sshdlg.cpp
index 49f4e52..62dcd24 100644
--- a/kdessh/sshdlg.cpp
+++ b/kdessh/sshdlg.cpp
@@ -2,14 +2,14 @@
*
* $Id$
*
- * 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>
*/
#include <klocale.h>
#include <kmessagebox.h>
-#include <kdesu/ssh.h>
+#include <tdesu/ssh.h>
#include "sshdlg.h"
@@ -59,7 +59,7 @@ bool KDEsshDialog::checkPassword(const char *password)
case SshProcess::SshNotFound:
KMessageBox::sorry(this,
- i18n("The programs 'ssh' or 'kdesu_stub' cannot be found.\n"
+ i18n("The programs 'ssh' or 'tdesu_stub' cannot be found.\n"
"Make sure your PATH is set correctly."));
done(Rejected);
return false;
diff --git a/kdessh/sshdlg.h b/kdessh/sshdlg.h
index 644662f..cb77b36 100644
--- a/kdessh/sshdlg.h
+++ b/kdessh/sshdlg.h
@@ -2,7 +2,7 @@
*
* $Id$
*
- * 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>
*/