summaryrefslogtreecommitdiffstats
path: root/libkcal/person.h
diff options
context:
space:
mode:
Diffstat (limited to 'libkcal/person.h')
-rw-r--r--libkcal/person.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/libkcal/person.h b/libkcal/person.h
index 55b16707..e044f730 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;