diff options
Diffstat (limited to 'libkdepim/kaccount.h')
-rw-r--r-- | libkdepim/kaccount.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libkdepim/kaccount.h b/libkdepim/kaccount.h index 765c5ae70..d81182767 100644 --- a/libkdepim/kaccount.h +++ b/libkdepim/kaccount.h @@ -32,7 +32,7 @@ #ifndef __KACCOUNT #define __KACCOUNT -#include <qstring.h> +#include <tqstring.h> #include <kdepimmacros.h> class KConfig; @@ -50,14 +50,14 @@ class KDE_EXPORT KAccount Other }; - KAccount( const uint id = 0, const QString &name = QString::null, + KAccount( const uint id = 0, const TQString &name = TQString::null, const Type type = Other ); /** * Get/Set name */ - QString name() const { return mName; } - void setName( const QString& name ) { mName = name; } + TQString name() const { return mName; } + void setName( const TQString& name ) { mName = name; } /** * Get/Set id @@ -75,17 +75,17 @@ class KDE_EXPORT KAccount * Save the settings * If the group is empty it must be preset in the KConfig */ - void writeConfig( KConfig &config, const QString &group = QString::null ); + void writeConfig( KConfig &config, const TQString &group = TQString::null ); /** * Read the settings * If the group is empty it must be preset in the KConfig */ - void readConfig( KConfig &config, const QString &group = QString::null ); + void readConfig( KConfig &config, const TQString &group = TQString::null ); protected: uint mId; - QString mName; + TQString mName; Type mType; }; |