summaryrefslogtreecommitdiffabout
path: root/kabc/vcard/GeoValue.cpp
Side-by-side diff
Diffstat (limited to 'kabc/vcard/GeoValue.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--kabc/vcard/GeoValue.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/kabc/vcard/GeoValue.cpp b/kabc/vcard/GeoValue.cpp
index e02b402..ba57a6b 100644
--- a/kabc/vcard/GeoValue.cpp
+++ b/kabc/vcard/GeoValue.cpp
@@ -20,12 +20,14 @@
#include <VCardGeoValue.h>
#include <VCardValue.h>
#include <kdebug.h>
+//Added by qt3to4:
+#include <Q3CString>
using namespace VCARD;
GeoValue::GeoValue()
: Value()
{
@@ -33,13 +35,13 @@ GeoValue::GeoValue()
GeoValue::GeoValue(const GeoValue & x)
: Value(x), latitude_(x.latitude_), longitude_(x.longitude_)
{
}
-GeoValue::GeoValue(const QCString & s)
+GeoValue::GeoValue(const Q3CString & s)
: Value(s)
{
}
GeoValue &
GeoValue::operator = (GeoValue & x)
@@ -51,13 +53,13 @@ GeoValue::operator = (GeoValue & x)
Value::operator = (x);
return *this;
}
GeoValue &
-GeoValue::operator = (const QCString & s)
+GeoValue::operator = (const Q3CString & s)
{
Value::operator = (s);
return *this;
}
bool