diff options
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 |