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 /ksayit/src/ksayitviewimpl.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 'ksayit/src/ksayitviewimpl.h')
-rw-r--r-- | ksayit/src/ksayitviewimpl.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ksayit/src/ksayitviewimpl.h b/ksayit/src/ksayitviewimpl.h index fea6c36..eb288e7 100644 --- a/ksayit/src/ksayitviewimpl.h +++ b/ksayit/src/ksayitviewimpl.h @@ -19,8 +19,8 @@ #define KSAYITVIEWIMPL_H // QT includes -#include <qwidget.h> -#include <qstring.h> +#include <tqwidget.h> +#include <tqstring.h> // KDE includes @@ -35,12 +35,12 @@ class KSayItViewImpl : public KSayItView { Q_OBJECT public: - KSayItViewImpl(QWidget *parent=0, const char *name=0); + KSayItViewImpl(TQWidget *parent=0, const char *name=0); ~KSayItViewImpl(); signals: - void signalSetCaption(const QString &caption); - void signalShowStatus(const QString &status); + void signalSetCaption(const TQString &caption); + void signalShowStatus(const TQString &status); void signalEnableCopyCut(bool enable); /** Emitted when the text in the TextEditor view cahnges. @@ -73,11 +73,11 @@ private slots: public: // Methods /** Returns the text of the TextEdit-Widget */ - QString& getText(); + TQString& getText(); /** Set the content of the textEdit-Widget to text */ - void setText(const QString &text); + void setText(const TQString &text); /** Enables/disables the Textedit * \param enable true=enabled, false=diabled @@ -89,7 +89,7 @@ public: // Methods void textClear(); private: - QString t; + TQString t; }; |