summaryrefslogtreecommitdiffstats
path: root/kabc/vcard/TextListValue.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kabc/vcard/TextListValue.cpp')
-rw-r--r--kabc/vcard/TextListValue.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kabc/vcard/TextListValue.cpp b/kabc/vcard/TextListValue.cpp
index c4ac1e38b..e29a8dcc2 100644
--- a/kabc/vcard/TextListValue.cpp
+++ b/kabc/vcard/TextListValue.cpp
@@ -39,7 +39,7 @@ TextListValue::TextListValue(const TextListValue & x)
{
}
-TextListValue::TextListValue(const QCString & s)
+TextListValue::TextListValue(const TQCString & s)
: Value(s)
{
}
@@ -54,7 +54,7 @@ TextListValue::operator = (TextListValue & x)
}
TextListValue &
-TextListValue::operator = (const QCString & s)
+TextListValue::operator = (const TQCString & s)
{
Value::operator = (s);
return *this;
@@ -82,7 +82,7 @@ TextListValue::_assemble()
{
bool first(true);
- QStrListIterator it(valueList_);
+ TQStrListIterator it(valueList_);
for (; it.current(); ++it) {
if (!first) strRep_ += ';';