summaryrefslogtreecommitdiffabout
path: root/kabc/vcard/TextListValue.cpp
Side-by-side diff
Diffstat (limited to 'kabc/vcard/TextListValue.cpp') (more/less context) (show whitespace changes)
-rw-r--r--kabc/vcard/TextListValue.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/kabc/vcard/TextListValue.cpp b/kabc/vcard/TextListValue.cpp
index c4ac1e3..919f4f7 100644
--- a/kabc/vcard/TextListValue.cpp
+++ b/kabc/vcard/TextListValue.cpp
@@ -27,4 +27,6 @@
#include <VCardValue.h>
+//Added by qt3to4:
+#include <Q3CString>
using namespace VCARD;
@@ -40,5 +42,5 @@ TextListValue::TextListValue(const TextListValue & x)
}
-TextListValue::TextListValue(const QCString & s)
+TextListValue::TextListValue(const Q3CString & s)
: Value(s)
{
@@ -55,5 +57,5 @@ TextListValue::operator = (TextListValue & x)
TextListValue &
-TextListValue::operator = (const QCString & s)
+TextListValue::operator = (const Q3CString & s)
{
Value::operator = (s);
@@ -83,5 +85,5 @@ TextListValue::_assemble()
bool first(true);
- QStrListIterator it(valueList_);
+ Q3StrListIterator it(valueList_);
for (; it.current(); ++it) {
@@ -99,5 +101,5 @@ TextListValue::numValues()
}
- QCString
+ Q3CString
TextListValue::value(unsigned int i)
{