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 /kaddressbook/common/kabprefs.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 'kaddressbook/common/kabprefs.h')
-rw-r--r-- | kaddressbook/common/kabprefs.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/kaddressbook/common/kabprefs.h b/kaddressbook/common/kabprefs.h index 3c2db1522..688cab99f 100644 --- a/kaddressbook/common/kabprefs.h +++ b/kaddressbook/common/kabprefs.h @@ -24,7 +24,7 @@ #ifndef KABPREFS_H #define KABPREFS_H -#include <qstringlist.h> +#include <tqstringlist.h> #include <kdepimmacros.h> #include "kabprefs_base.h" @@ -40,34 +40,34 @@ class KDE_EXPORT KABPrefs : public KABPrefsBase void usrReadConfig(); void usrWriteConfig(); - void setLocationMapURL( const QString &locationMapURL ) + void setLocationMapURL( const TQString &locationMapURL ) { - if ( !isImmutable( QString::fromLatin1( "LocationMapURL" ) ) ) + if ( !isImmutable( TQString::fromLatin1( "LocationMapURL" ) ) ) mLocationMapURL = locationMapURL; } - QString locationMapURL() const + TQString locationMapURL() const { return mLocationMapURL; } - void setLocationMapURLs( const QStringList &locationMapURLs ) + void setLocationMapURLs( const TQStringList &locationMapURLs ) { - if ( !isImmutable( QString::fromLatin1( "LocationMapURLs" ) ) ) + if ( !isImmutable( TQString::fromLatin1( "LocationMapURLs" ) ) ) mLocationMapURLs = locationMapURLs; } - QStringList locationMapURLs() const + TQStringList locationMapURLs() const { return mLocationMapURLs; } - QStringList customCategories() const + TQStringList customCategories() const { return mCustomCategories; } - void setCustomCategories(const QStringList & s) + void setCustomCategories(const TQStringList & s) { mCustomCategories = s; } @@ -79,8 +79,8 @@ class KDE_EXPORT KABPrefs : public KABPrefsBase static KABPrefs *mInstance; - QString mLocationMapURL; - QStringList mLocationMapURLs; + TQString mLocationMapURL; + TQStringList mLocationMapURLs; }; #endif |