summaryrefslogtreecommitdiffabout
path: root/kabc/vcard/include/VCardVCard.h
Side-by-side diff
Diffstat (limited to 'kabc/vcard/include/VCardVCard.h') (more/less context) (ignore whitespace changes)
-rw-r--r--kabc/vcard/include/VCardVCard.h18
1 files changed, 10 insertions, 8 deletions
diff --git a/kabc/vcard/include/VCardVCard.h b/kabc/vcard/include/VCardVCard.h
index 5dec166..5b66074 100644
--- a/kabc/vcard/include/VCardVCard.h
+++ b/kabc/vcard/include/VCardVCard.h
@@ -27,3 +27,5 @@
#include <qstring.h>
-#include <qptrlist.h>
+#include <q3ptrlist.h>
+//Added by qt3to4:
+#include <Q3CString>
@@ -42,13 +44,13 @@ class VCard : public Entity
bool has(EntityType);
- bool has(const QCString &);
+ bool has(const Q3CString &);
void add(const ContentLine &);
- void add(const QCString &);
+ void add(const Q3CString &);
ContentLine * contentLine(EntityType);
- ContentLine * contentLine(const QCString &);
+ ContentLine * contentLine(const Q3CString &);
- QCString group() { parse(); return group_; }
+ Q3CString group() { parse(); return group_; }
- QPtrList<ContentLine> contentLineList() { parse(); return contentLineList_; }
+ Q3PtrList<ContentLine> contentLineList() { parse(); return contentLineList_; }
@@ -56,4 +58,4 @@ class VCard : public Entity
- QCString group_;
- QPtrList<ContentLine> contentLineList_;
+ Q3CString group_;
+ Q3PtrList<ContentLine> contentLineList_;
};