diff options
Diffstat (limited to 'korganizer/docprefs.h')
-rw-r--r-- | korganizer/docprefs.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/korganizer/docprefs.h b/korganizer/docprefs.h index 0c9609ed5..70d1cac9d 100644 --- a/korganizer/docprefs.h +++ b/korganizer/docprefs.h @@ -24,26 +24,26 @@ #ifndef DOCPREFS_H #define DOCPREFS_H -#include <qstring.h> +#include <tqstring.h> class KSimpleConfig; class DocPrefs { public: - DocPrefs( const QString &type="general" ); + DocPrefs( const TQString &type="general" ); ~DocPrefs(); - void setDoc( const QString &identifier ); - QString doc() const; + void setDoc( const TQString &identifier ); + TQString doc() const; - bool readBoolEntry( const QString &identifier ) const; - void writeEntry( const QString &identifier, bool value ); + bool readBoolEntry( const TQString &identifier ) const; + void writeEntry( const TQString &identifier, bool value ); private: static KSimpleConfig *mConfig; - QString mDocId; + TQString mDocId; }; #endif |