summaryrefslogtreecommitdiffstats
path: root/kdeui/tests/kspelltest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdeui/tests/kspelltest.cpp')
-rw-r--r--kdeui/tests/kspelltest.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/kdeui/tests/kspelltest.cpp b/kdeui/tests/kspelltest.cpp
index 4511edd6c..9180ed376 100644
--- a/kdeui/tests/kspelltest.cpp
+++ b/kdeui/tests/kspelltest.cpp
@@ -20,26 +20,26 @@
#include <kapplication.h>
#include <kdebug.h>
-#include <qstring.h>
-#include <qlabel.h>
-#include <qtextcodec.h>
+#include <tqstring.h>
+#include <tqlabel.h>
+#include <tqtextcodec.h>
int main(int argc, char **argv)
{
KApplication *app = new KApplication(argc, argv, "KSpellTest");
// test ASCII
- //QString text( "I have noo idee of how to wride englisch or englisch" );
+ //TQString text( "I have noo idee of how to wride englisch or englisch" );
// test Latin-3 (need dictionary "esperanto" and "Latin3" in config)
- //QCString ctext( "sed jen: eĥoŝanĝ' ĉiuĵaŭde; eĥuŝunĝo ĝiun fendredon - kaj dimanĝon...");
- //QTextCodec *codec = QTextCodec::codecForName("ISO 8859-3");
+ //TQCString ctext( "sed jen: eĥoŝanĝ' ĉiuĵaŭde; eĥuŝunĝo ĝiun fendredon - kaj dimanĝon...");
+ //TQTextCodec *codec = TQTextCodec::codecForName("ISO 8859-3");
// test UTF-8 (need dictionary "esperanto" and "UTF-8" in config)
- QCString ctext( "sed jen: e\304\245oĊanĝo ĉiuĵaĊ­de e\304\245uĊunĝo ĝiun fendredon kaj dimanĝon");
- QTextCodec *codec = QTextCodec::codecForName("UTF-8");
+ TQCString ctext( "sed jen: e\304\245oĊanĝo ĉiuĵaĊ­de e\304\245uĊunĝo ĝiun fendredon kaj dimanĝon");
+ TQTextCodec *codec = TQTextCodec::codecForName("UTF-8");
- QString text = codec->toUnicode(ctext.data());
+ TQString text = codec->toUnicode(ctext.data());
KSpell::modalCheck( text );