summaryrefslogtreecommitdiffabout
path: root/kabc/vcard/TextValue.cpp
Side-by-side diff
Diffstat (limited to 'kabc/vcard/TextValue.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--kabc/vcard/TextValue.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/kabc/vcard/TextValue.cpp b/kabc/vcard/TextValue.cpp
index 09934fa..d0d2996 100644
--- a/kabc/vcard/TextValue.cpp
+++ b/kabc/vcard/TextValue.cpp
@@ -25,4 +25,6 @@
#include <VCardValue.h>
+//Added by qt3to4:
+#include <Q3CString>
using namespace VCARD;
@@ -38,5 +40,5 @@ TextValue::TextValue(const TextValue & x)
}
-TextValue::TextValue(const QCString & s)
+TextValue::TextValue(const Q3CString & s)
: Value(s)
{
@@ -53,5 +55,5 @@ TextValue::operator = (TextValue & x)
TextValue &
-TextValue::operator = (const QCString & s)
+TextValue::operator = (const Q3CString & s)
{
Value::operator = (s);
@@ -62,5 +64,5 @@ TextValue::operator = (const QCString & s)
TextValue::operator == (TextValue & x)
{
- return strRep_ = x.strRep_;
+ return strRep_ == x.strRep_;
}