From 7be55ffa061c026e35e2d6a0effe1161ddb0d41f Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:53:50 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- libkcal/attendee.h | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) (limited to 'libkcal/attendee.h') 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 -#include +#include +#include #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; -- cgit v1.2.1