summaryrefslogtreecommitdiffstats
path: root/kdessh/kdessh.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:48 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 18:46:48 -0600
commit6fdacb9c2e3adb3b5da38cd8a22afc1668e1d36b (patch)
treea6a367ba18807833d8f90cb6b233e7bdb3f007cc /kdessh/kdessh.cpp
parentba743d360eabb06e6ffbafd2c7bc833dd985aa0c (diff)
downloadtdeutils-6fdacb9c2e3adb3b5da38cd8a22afc1668e1d36b.tar.gz
tdeutils-6fdacb9c2e3adb3b5da38cd8a22afc1668e1d36b.zip
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
Diffstat (limited to 'kdessh/kdessh.cpp')
-rw-r--r--kdessh/kdessh.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kdessh/kdessh.cpp b/kdessh/kdessh.cpp
index 4a2a043..249bd1a 100644
--- a/kdessh/kdessh.cpp
+++ b/kdessh/kdessh.cpp
@@ -55,11 +55,11 @@ int main(int argc, char *argv[])
aboutData.addAuthor("Geert Jansen", I18N_NOOP("Maintainer"),
"jansen@kde.org", "http://www.stack.nl/~geertj/");
- KCmdLineArgs::init(argc, argv, &aboutData);
- KCmdLineArgs::addCmdLineOptions(options);
+ TDECmdLineArgs::init(argc, argv, &aboutData);
+ TDECmdLineArgs::addCmdLineOptions(options);
KApplication app;
- KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
+ TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();
// Stop daemon and exit?
if (args->isSet("q"))
@@ -80,7 +80,7 @@ int main(int argc, char *argv[])
}
if (args->count() < 2)
- KCmdLineArgs::usage(i18n("No command or host specified."));
+ TDECmdLineArgs::usage(i18n("No command or host specified."));
// Check if ssh is available
if (KStandardDirs::findExe(TQString::fromLatin1("ssh")).isEmpty())