diff options
Diffstat (limited to 'libkcal/person.h')
-rw-r--r-- | libkcal/person.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/libkcal/person.h b/libkcal/person.h index 55b167070..e044f7308 100644 --- a/libkcal/person.h +++ b/libkcal/person.h @@ -22,7 +22,7 @@ #ifndef KCAL_PERSON_H #define KCAL_PERSON_H -#include <qstring.h> +#include <tqstring.h> #include "libkcal_export.h" @@ -35,21 +35,21 @@ class LIBKCAL_EXPORT Person { public: Person() {} - Person( const QString &fullName ); - Person( const QString &name, const QString &email ); + Person( const TQString &fullName ); + Person( const TQString &name, const TQString &email ); bool isEmpty() const; - QString fullName( ) const; + TQString fullName( ) const; - void setName(const QString &); - QString name() const { return mName; } + void setName(const TQString &); + TQString name() const { return mName; } - void setEmail(const QString &); - QString email() const { return mEmail; } + void setEmail(const TQString &); + TQString email() const { return mEmail; } private: - QString mName; - QString mEmail; + TQString mName; + TQString mEmail; class Private; Private *d; |