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 /korganizer/koprefs.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 'korganizer/koprefs.h')
-rw-r--r-- | korganizer/koprefs.h | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/korganizer/koprefs.h b/korganizer/koprefs.h index dc7a62d18..c65382f5d 100644 --- a/korganizer/koprefs.h +++ b/korganizer/koprefs.h @@ -24,7 +24,7 @@ #ifndef KOPREFS_H #define KOPREFS_H -#include <qdict.h> +#include <tqdict.h> #include <kdepimmacros.h> @@ -35,7 +35,7 @@ class QFont; class QColor; class QStringList; -QColor getTextColor(const QColor &c); +TQColor getTextColor(const TQColor &c); class KDE_EXPORT KOPrefs : public KOPrefsBase @@ -72,46 +72,46 @@ class KDE_EXPORT KOPrefs : public KOPrefsBase public: // preferences data - void setFullName( const QString & ); - QString fullName(); - void setEmail( const QString & ); - QString email(); + void setFullName( const TQString & ); + TQString fullName(); + void setEmail( const TQString & ); + TQString email(); /// Returns all email addresses for the user. - QStringList allEmails(); + TQStringList allEmails(); /// Returns all email addresses together with the full username for the user. - QStringList fullEmails(); + TQStringList fullEmails(); /// Return true if the given email belongs to the user - bool thatIsMe( const QString& email ); + bool thatIsMe( const TQString& email ); - void setCategoryColor( const QString &cat, const QColor &color ); - QColor *categoryColor( const QString &cat ); - bool hasCategoryColor( const QString &cat ) const; + void setCategoryColor( const TQString &cat, const TQColor &color ); + TQColor *categoryColor( const TQString &cat ); + bool hasCategoryColor( const TQString &cat ) const; - void setResourceColor ( const QString &, const QColor & ); - QColor* resourceColor( const QString & ); + void setResourceColor ( const TQString &, const TQColor & ); + TQColor* resourceColor( const TQString & ); - QString mHtmlExportFile; + TQString mHtmlExportFile; bool mAlarmsEnabledByDefault; // Groupware passwords - QString mPublishPassword; - QString mRetrievePassword; + TQString mPublishPassword; + TQString mRetrievePassword; private: - QDict<QColor> mCategoryColors; - QColor mDefaultCategoryColor; + TQDict<TQColor> mCategoryColors; + TQColor mDefaultCategoryColor; - QDict<QColor> mResourceColors; - QColor mDefaultResourceColor; + TQDict<TQColor> mResourceColors; + TQColor mDefaultResourceColor; - QFont mDefaultTimeBarFont; - QFont mDefaultMonthViewFont; + TQFont mDefaultTimeBarFont; + TQFont mDefaultMonthViewFont; - QStringList mMyAddrBookMails; + TQStringList mMyAddrBookMails; public: // Do not use - except in KOPrefsDialogMain - QString mName; - QString mEmail; + TQString mName; + TQString mEmail; }; #endif |