summaryrefslogtreecommitdiffstats
path: root/kmail/dictionarycombobox.h
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/dictionarycombobox.h')
-rw-r--r--kmail/dictionarycombobox.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/kmail/dictionarycombobox.h b/kmail/dictionarycombobox.h
index 0e7a3e193..0fcbdceb2 100644
--- a/kmail/dictionarycombobox.h
+++ b/kmail/dictionarycombobox.h
@@ -32,7 +32,7 @@
#ifndef _KMAIL_DICTIONARYCOMBOBOX_H_
#define _KMAIL_DICTIONARYCOMBOBOX_H_
-#include <qcombobox.h>
+#include <tqcombobox.h>
class KSpellConfig;
class QStringList;
@@ -45,16 +45,16 @@ namespace KMail {
* @author Ingo Kloecker <kloecker@kde.org>
**/
- class DictionaryComboBox : public QComboBox {
+ class DictionaryComboBox : public TQComboBox {
Q_OBJECT
public:
- DictionaryComboBox( QWidget * parent=0, const char * name=0 );
+ DictionaryComboBox( TQWidget * parent=0, const char * name=0 );
~DictionaryComboBox();
- QString currentDictionaryName() const;
- QString currentDictionary() const;
- void setCurrentByDictionaryName( const QString & dictionaryName );
- void setCurrentByDictionary( const QString & dictionary );
+ TQString currentDictionaryName() const;
+ TQString currentDictionary() const;
+ void setCurrentByDictionaryName( const TQString & dictionaryName );
+ void setCurrentByDictionary( const TQString & dictionary );
KSpellConfig* spellConfig() const;
@@ -63,7 +63,7 @@ namespace KMail {
* by user intervention or on setCurrentByDictionaryName() or on
* setCurrentByDictionary().
**/
- void dictionaryChanged( const QString & dictionary );
+ void dictionaryChanged( const TQString & dictionary );
void dictionaryChanged( int );
protected slots:
@@ -73,7 +73,7 @@ namespace KMail {
void reloadCombo();
protected:
- QStringList mDictionaries;
+ TQStringList mDictionaries;
KSpellConfig* mSpellConfig;
int mDefaultDictionary;
};