summaryrefslogtreecommitdiffstats
path: root/kmail/dictionarycombobox.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /kmail/dictionarycombobox.h
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-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/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 0e7a3e19..0fcbdceb 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;
};