summaryrefslogtreecommitdiffstats
path: root/kabc/vcard/include/VCardVCard.h
diff options
context:
space:
mode:
Diffstat (limited to 'kabc/vcard/include/VCardVCard.h')
-rw-r--r--kabc/vcard/include/VCardVCard.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kabc/vcard/include/VCardVCard.h b/kabc/vcard/include/VCardVCard.h
index 120682212..64ed5c787 100644
--- a/kabc/vcard/include/VCardVCard.h
+++ b/kabc/vcard/include/VCardVCard.h
@@ -24,8 +24,8 @@
#ifndef VCARD_VCARD_H
#define VCARD_VCARD_H
-#include <qstring.h>
-#include <qptrlist.h>
+#include <tqstring.h>
+#include <tqptrlist.h>
#include <VCardEnum.h>
#include <VCardEntity.h>
@@ -40,22 +40,22 @@ class KVCARD_EXPORT VCard : public Entity
#include "VCard-generated.h"
bool has(EntityType);
- bool has(const QCString &);
+ bool has(const TQCString &);
void add(const ContentLine &);
- void add(const QCString &);
+ void add(const TQCString &);
ContentLine * contentLine(EntityType);
- ContentLine * contentLine(const QCString &);
+ ContentLine * contentLine(const TQCString &);
- QCString group() { parse(); return group_; }
+ TQCString group() { parse(); return group_; }
- QPtrList<ContentLine> contentLineList() { parse(); return contentLineList_; }
+ TQPtrList<ContentLine> contentLineList() { parse(); return contentLineList_; }
private:
QCString group_;
- QPtrList<ContentLine> contentLineList_;
+ TQPtrList<ContentLine> contentLineList_;
};
}