diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:20:30 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:20:30 +0000 |
commit | 28bf3cbba4139c8a0f81dc9d1a2f6c4ed724f22c (patch) | |
tree | a2f011f22aa31d0839c6e2118501b7a6d2f2ae96 /kmouth/speech.h | |
parent | 0285229d858c8f03cde7354c679a752598cf4515 (diff) | |
download | tdeaccessibility-28bf3cbba4139c8a0f81dc9d1a2f6c4ed724f22c.tar.gz tdeaccessibility-28bf3cbba4139c8a0f81dc9d1a2f6c4ed724f22c.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaccessibility@1157633 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmouth/speech.h')
-rw-r--r-- | kmouth/speech.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kmouth/speech.h b/kmouth/speech.h index 83c728c..11331cf 100644 --- a/kmouth/speech.h +++ b/kmouth/speech.h @@ -18,8 +18,8 @@ #ifndef SPEECH_H #define SPEECH_H -#include <qobject.h> -#include <qstring.h> +#include <tqobject.h> +#include <tqstring.h> #include <kprocess.h> #include <ktempfile.h> @@ -27,7 +27,7 @@ *@author Gunnar Schmi Dt */ -class Speech : public QObject { +class Speech : public TQObject { Q_OBJECT public: enum CharacterCodec { @@ -46,7 +46,7 @@ public: * @param stdin true if the program shall receive its data via standard input * @param text The text that shall be spoken */ - void speak(QString command, bool use_stdin, const QString &text, const QString &language, int encoding, QTextCodec *codec); + void speak(TQString command, bool use_stdin, const TQString &text, const TQString &language, int encoding, TQTextCodec *codec); /** * Prepares a command for being executed. During the preparation the @@ -54,8 +54,8 @@ public: * @param command the command that shall be executed for speaking * @param text the quoted text that can be inserted into the command */ - QString prepareCommand (QString command, const QString &text, - const QString &filename, const QString &language); + TQString prepareCommand (TQString command, const TQString &text, + const TQString &filename, const TQString &language); public slots: void wroteStdin (KProcess *p); @@ -65,7 +65,7 @@ public slots: private: KShellProcess process; - QByteArray encText; + TQByteArray encText; KTempFile tempFile; }; |