summaryrefslogtreecommitdiffstats
path: root/libkdepim/kaccount.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 /libkdepim/kaccount.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 'libkdepim/kaccount.h')
-rw-r--r--libkdepim/kaccount.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/libkdepim/kaccount.h b/libkdepim/kaccount.h
index 765c5ae7..d8118276 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;
};