diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-18 18:28:00 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-18 18:28:00 -0600 |
commit | 6687cd2515bdebbd8f0c92261f3acf8777441ca6 (patch) | |
tree | c842392adc0b9d0eed2730bb756d5381b0fabc82 /kttsd/plugins/flite/fliteproc.cpp | |
parent | f46912a1a50c5ca06eb713e43e170f5ac47bb680 (diff) | |
download | tdeaccessibility-6687cd2515bdebbd8f0c92261f3acf8777441ca6.tar.gz tdeaccessibility-6687cd2515bdebbd8f0c92261f3acf8777441ca6.zip |
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'kttsd/plugins/flite/fliteproc.cpp')
-rw-r--r-- | kttsd/plugins/flite/fliteproc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kttsd/plugins/flite/fliteproc.cpp b/kttsd/plugins/flite/fliteproc.cpp index 238cf26..3f0df60 100644 --- a/kttsd/plugins/flite/fliteproc.cpp +++ b/kttsd/plugins/flite/fliteproc.cpp @@ -218,13 +218,13 @@ void FliteProc::slotProcessExited(KProcess*) void FliteProc::slotReceivedStdout(KProcess*, char* buffer, int buflen) { - TQString buf = TQString::tqfromLatin1(buffer, buflen); + TQString buf = TQString::fromLatin1(buffer, buflen); kdDebug() << "FliteProc::slotReceivedStdout: Received output from Flite: " << buf << endl; } void FliteProc::slotReceivedStderr(KProcess*, char* buffer, int buflen) { - TQString buf = TQString::tqfromLatin1(buffer, buflen); + TQString buf = TQString::fromLatin1(buffer, buflen); kdDebug() << "FliteProc::slotReceivedStderr: Received error from Flite: " << buf << endl; } |