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/texttospeechsystem.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/texttospeechsystem.h')
-rw-r--r-- | kmouth/texttospeechsystem.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kmouth/texttospeechsystem.h b/kmouth/texttospeechsystem.h index fc9b018..f435585 100644 --- a/kmouth/texttospeechsystem.h +++ b/kmouth/texttospeechsystem.h @@ -19,9 +19,9 @@ #ifndef TEXTTOSPEECHSYSTEM_H #define TEXTTOSPEECHSYSTEM_H -#include <qstring.h> -#include <qobject.h> -#include <qptrlist.h> +#include <tqstring.h> +#include <tqobject.h> +#include <tqptrlist.h> class KConfig; @@ -36,18 +36,18 @@ public: TextToSpeechSystem(); ~TextToSpeechSystem(); - void readOptions (KConfig *config, const QString &langGroup); - void saveOptions (KConfig *config, const QString &langGroup); + void readOptions (KConfig *config, const TQString &langGroup); + void saveOptions (KConfig *config, const TQString &langGroup); public slots: - void speak (const QString &text, const QString &language); + void speak (const TQString &text, const TQString &language); private: void buildCodecList (); - QPtrList<QTextCodec> *codecList; + TQPtrList<TQTextCodec> *codecList; int codec; - QString ttsCommand; + TQString ttsCommand; bool stdIn; bool useKttsd; }; |