From ffe8a83e053396df448e9413828527613ca3bd46 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:46:43 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kspell2/threadevents.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'kspell2/threadevents.h') diff --git a/kspell2/threadevents.h b/kspell2/threadevents.h index 50b5938d6..e6b52293e 100644 --- a/kspell2/threadevents.h +++ b/kspell2/threadevents.h @@ -21,8 +21,8 @@ #ifndef KSPELL_THREADEVENTS_H #define KSPELL_THREADEVENTS_H -#include -#include +#include +#include namespace KSpell2 { @@ -33,27 +33,27 @@ namespace KSpell2 class MisspellingEvent : public QCustomEvent { public: - MisspellingEvent( const QString& word, + MisspellingEvent( const TQString& word, int pos ) - : QCustomEvent( FoundMisspelling ), m_word( word ), + : TQCustomEvent( FoundMisspelling ), m_word( word ), m_position( pos ) {} - QString word() const { + TQString word() const { return m_word; } int position() const { return m_position; } private: - QString m_word; + TQString m_word; int m_position; }; class FinishedCheckingEvent : public QCustomEvent { public: FinishedCheckingEvent() - : QCustomEvent( FinishedChecking ) + : TQCustomEvent( FinishedChecking ) {} }; -- cgit v1.2.1