summaryrefslogtreecommitdiffstats
path: root/libkpimidentities/identitycombo.h
diff options
context:
space:
mode:
Diffstat (limited to 'libkpimidentities/identitycombo.h')
-rw-r--r--libkpimidentities/identitycombo.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/libkpimidentities/identitycombo.h b/libkpimidentities/identitycombo.h
index 193b81d0..ab7382f5 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;
};