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 /libkcal/attendee.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 'libkcal/attendee.h')
-rw-r--r-- | libkcal/attendee.h | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/libkcal/attendee.h b/libkcal/attendee.h index 1cdc7b546..f460665b6 100644 --- a/libkcal/attendee.h +++ b/libkcal/attendee.h @@ -22,8 +22,8 @@ #ifndef KCAL_ATTENDEE_H #define KCAL_ATTENDEE_H -#include <qstring.h> -#include <qstringlist.h> +#include <tqstring.h> +#include <tqstringlist.h> #include "listbase.h" #include "person.h" @@ -52,9 +52,9 @@ class LIBKCAL_EXPORT Attendee : public Person @param role Role @param u the uid for the attendee */ - Attendee( const QString &name, const QString &email, + Attendee( const TQString &name, const TQString &email, bool rsvp = false, PartStat status = NeedsAction, - Role role = ReqParticipant, const QString &u = QString::null ); + Role role = ReqParticipant, const TQString &u = TQString::null ); /** Destruct Attendee. */ @@ -74,24 +74,24 @@ class LIBKCAL_EXPORT Attendee : public Person /** Return role as clear text string. */ - QString roleStr() const; + TQString roleStr() const; /** Return string represenation of role. */ - static QString roleName( Role ); + static TQString roleName( Role ); /** Return string representations of all available roles. */ - static QStringList roleList(); + static TQStringList roleList(); /** Return unique id of the attendee. */ - QString uid() const; + TQString uid() const; /** Set unique id of attendee. */ - void setUid ( const QString & ); + void setUid ( const TQString & ); /** Set status. See enum for definitions of possible values. @@ -106,15 +106,15 @@ class LIBKCAL_EXPORT Attendee : public Person /** Return status as human-readable string. */ - QString statusStr() const; + TQString statusStr() const; /** Return string representation of attendee status. */ - static QString statusName( PartStat ); + static TQString statusName( PartStat ); /** Return string representations of all available attendee status values. */ - static QStringList statusList(); + static TQStringList statusList(); /** Set if Attendee is asked to reply. @@ -128,28 +128,28 @@ class LIBKCAL_EXPORT Attendee : public Person /** Sets the delegate. */ - void setDelegate( const QString &delegate ) { mDelegate = delegate; } + void setDelegate( const TQString &delegate ) { mDelegate = delegate; } /** Returns the delegate. */ - QString delegate() const { return mDelegate; } + TQString delegate() const { return mDelegate; } /** Sets the delegator. */ - void setDelegator( const QString &delegator ) { mDelegator = delegator; } + void setDelegator( const TQString &delegator ) { mDelegator = delegator; } /** Returns the delegator. */ - QString delegator() const { return mDelegator; } + TQString delegator() const { return mDelegator; } private: bool mRSVP; Role mRole; PartStat mStatus; - QString mUid; - QString mDelegate; - QString mDelegator; + TQString mUid; + TQString mDelegate; + TQString mDelegator; class Private; Private *d; |