diff options
Diffstat (limited to 'kdessh')
-rw-r--r-- | kdessh/Makefile.am | 4 | ||||
-rw-r--r-- | kdessh/kdessh.cpp | 12 | ||||
-rw-r--r-- | kdessh/sshdlg.cpp | 6 | ||||
-rw-r--r-- | kdessh/sshdlg.h | 2 |
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> */ |