summaryrefslogtreecommitdiffstats
path: root/kdessh
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-18 18:35:27 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-18 18:35:27 -0600
commitbcc684e28ad6f9ebeeae5d334a4dc297cef3e816 (patch)
tree07fafab2b93966c9e2128ba52337a43d388d300c /kdessh
parent955e20356d63ed405198c8143617a8a0ca8bfc02 (diff)
downloadtdeutils-bcc684e28ad6f9ebeeae5d334a4dc297cef3e816.tar.gz
tdeutils-bcc684e28ad6f9ebeeae5d334a4dc297cef3e816.zip
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'kdessh')
-rw-r--r--kdessh/kdessh.cpp6
-rw-r--r--kdessh/sshdlg.cpp4
2 files changed, 5 insertions, 5 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);
diff --git a/kdessh/sshdlg.cpp b/kdessh/sshdlg.cpp
index 62dcd24..60934b7 100644
--- a/kdessh/sshdlg.cpp
+++ b/kdessh/sshdlg.cpp
@@ -21,10 +21,10 @@ KDEsshDialog::KDEsshDialog(TQCString host, TQCString user, TQCString stub,
m_User = user;
m_Stub = stub;
- setCaption(TQString::tqfromLatin1("%1@%2").tqarg(TQString(m_User)).tqarg(TQString(m_Host)));
+ setCaption(TQString::fromLatin1("%1@%2").tqarg(TQString(m_User)).tqarg(TQString(m_Host)));
// Make the prompt a little more polite :-)
- if (prompt.lower().left(6) == TQString::tqfromLatin1("enter "))
+ if (prompt.lower().left(6) == TQString::fromLatin1("enter "))
prompt.remove(0, 6);
int pos = prompt.find(':');
if (pos != -1)