summaryrefslogtreecommitdiffstats
path: root/kdessh/kdessh.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdessh/kdessh.cpp')
-rw-r--r--kdessh/kdessh.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kdessh/kdessh.cpp b/kdessh/kdessh.cpp
index a3d5003..6e6a48d 100644
--- a/kdessh/kdessh.cpp
+++ b/kdessh/kdessh.cpp
@@ -83,7 +83,7 @@ int main(int argc, char *argv[])
KCmdLineArgs::usage(i18n("No command or host specified."));
// Check if ssh is available
- if (KStandardDirs::findExe(TQString::tqfromLatin1("ssh")).isEmpty())
+ if (KStandardDirs::findExe(TQString::fromLatin1("ssh")).isEmpty())
{
kdError(1511) << "ssh not found\n";
exit(1);
@@ -151,8 +151,8 @@ int main(int argc, char *argv[])
// Read configuration
KConfig *config = KGlobal::config();
- config->setGroup(TQString::tqfromLatin1("Passwords"));
- int timeout = config->readNumEntry(TQString::tqfromLatin1("Timeout"), defTimeout);
+ config->setGroup(TQString::fromLatin1("Passwords"));
+ int timeout = config->readNumEntry(TQString::fromLatin1("Timeout"), defTimeout);
SshProcess proc(host, user);
proc.setStub(stub);