summaryrefslogtreecommitdiffstats
path: root/kmouth/speech.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-18 18:28:00 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-06-20 19:43:54 +0200
commitb33c04530149523d99425f92e428231b79b7991d (patch)
tree79275b0a04020e042902d8bb6fd3afe926098f6d /kmouth/speech.cpp
parentee22425fa7d7f0f730e37f16d65e21ab8ce7bd40 (diff)
downloadtdeaccessibility-b33c04530149523d99425f92e428231b79b7991d.tar.gz
tdeaccessibility-b33c04530149523d99425f92e428231b79b7991d.zip
Rename old tq methods that no longer need a unique name
(cherry picked from commit 6687cd2515bdebbd8f0c92261f3acf8777441ca6)
Diffstat (limited to 'kmouth/speech.cpp')
-rw-r--r--kmouth/speech.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kmouth/speech.cpp b/kmouth/speech.cpp
index f74e1fd..8fc8f19 100644
--- a/kmouth/speech.cpp
+++ b/kmouth/speech.cpp
@@ -225,10 +225,10 @@ void Speech::speak(TQString command, bool stdIn, const TQString &text, const TQS
}
void Speech::receivedStdout (KProcess *, char *buffer, int buflen) {
- kdDebug() << TQString::tqfromLatin1(buffer, buflen) + "\n";
+ kdDebug() << TQString::fromLatin1(buffer, buflen) + "\n";
}
void Speech::receivedStderr (KProcess *, char *buffer, int buflen) {
- kdDebug() << TQString::tqfromLatin1(buffer, buflen) + "\n";
+ kdDebug() << TQString::fromLatin1(buffer, buflen) + "\n";
}
void Speech::wroteStdin(KProcess *) {