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 /libkpimidentities/identitycombo.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 'libkpimidentities/identitycombo.h')
-rw-r--r-- | libkpimidentities/identitycombo.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libkpimidentities/identitycombo.h b/libkpimidentities/identitycombo.h index 193b81d04..ab7382f5a 100644 --- a/libkpimidentities/identitycombo.h +++ b/libkpimidentities/identitycombo.h @@ -32,8 +32,8 @@ #ifndef _KPIM_IDENTITYCOMBO_H_ #define _KPIM_IDENTITYCOMBO_H_ -#include <qcombobox.h> -#include <qvaluelist.h> +#include <tqcombobox.h> +#include <tqvaluelist.h> #include <kdepimmacros.h> class QString; @@ -48,14 +48,14 @@ class Identity; * @author Marc Mutz <mutz@kde.org> **/ -class KDE_EXPORT IdentityCombo : public QComboBox { +class KDE_EXPORT IdentityCombo : public TQComboBox { Q_OBJECT public: - IdentityCombo( IdentityManager* manager, QWidget * parent=0, const char * name=0 ); + IdentityCombo( IdentityManager* manager, TQWidget * parent=0, const char * name=0 ); - QString currentIdentityName() const; + TQString currentIdentityName() const; uint currentIdentity() const; - void setCurrentIdentity( const QString & identityName ); + void setCurrentIdentity( const TQString & identityName ); void setCurrentIdentity( const Identity & identity ); void setCurrentIdentity( uint uoid ); @@ -65,7 +65,7 @@ signals: * by user intervention or on setCurrentIdentity() or if the * current identity disappears. **/ - void identityChanged( const QString & identityName ); + void identityChanged( const TQString & identityName ); /** @em Really emitted whenever the current identity changes. Either * by user intervention or on setCurrentIdentity() or if the @@ -90,7 +90,7 @@ protected: void reloadUoidList(); protected: - QValueList<uint> mUoidList; + TQValueList<uint> mUoidList; IdentityManager* mIdentityManager; }; |