diff options
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(); |