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.cpp | |
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.cpp')
-rw-r--r-- | ksayit/src/ksayitviewimpl.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ksayit/src/ksayitviewimpl.cpp b/ksayit/src/ksayitviewimpl.cpp index e619f8c..dfda154 100644 --- a/ksayit/src/ksayitviewimpl.cpp +++ b/ksayit/src/ksayitviewimpl.cpp @@ -20,9 +20,9 @@ using namespace std; // QT includes -#include <qradiobutton.h> -#include <qtextstream.h> -#include <qstring.h> +#include <tqradiobutton.h> +#include <tqtextstream.h> +#include <tqstring.h> // KDE includes #include <kdebug.h> @@ -33,7 +33,7 @@ using namespace std; // App specific includes #include "ksayitviewimpl.h" -KSayItViewImpl::KSayItViewImpl(QWidget *parent, const char *name ) : KSayItView(parent,name) { +KSayItViewImpl::KSayItViewImpl(TQWidget *parent, const char *name ) : KSayItView(parent,name) { // some presets @@ -41,7 +41,7 @@ KSayItViewImpl::KSayItViewImpl(QWidget *parent, const char *name ) : KSayItView( KSayItViewImpl::~KSayItViewImpl(){ } -QString& KSayItViewImpl::getText(){ +TQString& KSayItViewImpl::getText(){ t = TextEdit->text(); return t; } @@ -104,7 +104,7 @@ void KSayItViewImpl::textClear() TextEdit->clear(); } -void KSayItViewImpl::setText(const QString &text) +void KSayItViewImpl::setText(const TQString &text) { // set text to text TextEdit->setText( text ); |