summaryrefslogtreecommitdiffstats
path: root/kmouth/speech.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmouth/speech.cpp')
-rw-r--r--kmouth/speech.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kmouth/speech.cpp b/kmouth/speech.cpp
index b682a47..81ed650 100644
--- a/kmouth/speech.cpp
+++ b/kmouth/speech.cpp
@@ -21,7 +21,7 @@
#include <tqvaluestack.h>
#include <tqstringlist.h>
#include <tqregexp.h>
-#include <textcodec.h>
+#include <tqtextcodec.h>
#include <tqfile.h>
#include <kdebug.h>
@@ -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::fromLatin1(buffer, buflen) + "\n";
+ kdDebug() << TQString::tqfromLatin1(buffer, buflen) + "\n";
}
void Speech::receivedStderr (KProcess *, char *buffer, int buflen) {
- kdDebug() << TQString::fromLatin1(buffer, buflen) + "\n";
+ kdDebug() << TQString::tqfromLatin1(buffer, buflen) + "\n";
}
void Speech::wroteStdin(KProcess *) {