diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /kmail/kmlineeditspell.h | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmail/kmlineeditspell.h')
-rw-r--r-- | kmail/kmlineeditspell.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kmail/kmlineeditspell.h b/kmail/kmlineeditspell.h index 85b4c1c9d..1355cd0ec 100644 --- a/kmail/kmlineeditspell.h +++ b/kmail/kmlineeditspell.h @@ -13,7 +13,7 @@ class KMLineEdit : public KPIM::AddresseeLineEdit { Q_OBJECT public: - KMLineEdit(bool useCompletion, QWidget *parent = 0, + KMLineEdit(bool useCompletion, TQWidget *parent = 0, const char *name = 0); signals: @@ -24,16 +24,16 @@ protected: // Inherited. Always called by the parent when this widget is created. virtual void loadContacts(); - virtual void keyPressEvent(QKeyEvent*); + virtual void keyPressEvent(TQKeyEvent*); - virtual QPopupMenu *createPopupMenu(); + virtual TQPopupMenu *createPopupMenu(); private slots: void editRecentAddresses(); private: - void dropEvent( QDropEvent *event ); - void insertEmails( const QStringList & emails ); + void dropEvent( TQDropEvent *event ); + void insertEmails( const TQStringList & emails ); }; @@ -41,12 +41,12 @@ class KMLineEditSpell : public KMLineEdit { Q_OBJECT public: - KMLineEditSpell(bool useCompletion, QWidget *parent = 0, + KMLineEditSpell(bool useCompletion, TQWidget *parent = 0, const char *name = 0); void highLightWord( unsigned int length, unsigned int pos ); - void spellCheckDone( const QString &s ); - void spellCheckerMisspelling( const QString &text, const QStringList &, unsigned int pos); - void spellCheckerCorrected( const QString &old, const QString &corr, unsigned int pos); + void spellCheckDone( const TQString &s ); + void spellCheckerMisspelling( const TQString &text, const TQStringList &, unsigned int pos); + void spellCheckerCorrected( const TQString &old, const TQString &corr, unsigned int pos); signals: void subjectTextSpellChecked(); |