summaryrefslogtreecommitdiffabout
path: root/kabc/vcard/Value.cpp
Unidiff
Diffstat (limited to 'kabc/vcard/Value.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--kabc/vcard/Value.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/kabc/vcard/Value.cpp b/kabc/vcard/Value.cpp
index 1978af2..3a4d406 100644
--- a/kabc/vcard/Value.cpp
+++ b/kabc/vcard/Value.cpp
@@ -23,6 +23,8 @@
23 23
24#include <VCardEntity.h> 24#include <VCardEntity.h>
25#include <VCardValue.h> 25#include <VCardValue.h>
26//Added by qt3to4:
27#include <Q3CString>
26 28
27using namespace VCARD; 29using namespace VCARD;
28 30
@@ -36,7 +38,7 @@ Value::Value(const Value & x)
36{ 38{
37} 39}
38 40
39Value::Value(const QCString & s) 41Value::Value(const Q3CString & s)
40 :Entity(s) 42 :Entity(s)
41{ 43{
42} 44}
@@ -51,7 +53,7 @@ Value::operator = (Value & x)
51} 53}
52 54
53 Value & 55 Value &
54Value::operator = (const QCString & s) 56Value::operator = (const Q3CString & s)
55{ 57{
56 Entity::operator = (s); 58 Entity::operator = (s);
57 return *this; 59 return *this;