summaryrefslogtreecommitdiffstats
path: root/kabc/vcard/URIValue.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kabc/vcard/URIValue.cpp')
-rw-r--r--kabc/vcard/URIValue.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kabc/vcard/URIValue.cpp b/kabc/vcard/URIValue.cpp
index c1d1022e8..98f75cb8e 100644
--- a/kabc/vcard/URIValue.cpp
+++ b/kabc/vcard/URIValue.cpp
@@ -32,7 +32,7 @@ URIValue::URIValue()
{
}
-URIValue::URIValue(const QCString & scheme, const QCString & schemeSpecificPart)
+URIValue::URIValue(const TQCString & scheme, const TQCString & schemeSpecificPart)
: Value(),
scheme_ (scheme),
schemeSpecificPart_ (schemeSpecificPart)
@@ -47,7 +47,7 @@ URIValue::URIValue(const URIValue & x)
{
}
-URIValue::URIValue(const QCString & s)
+URIValue::URIValue(const TQCString & s)
: Value(s)
{
}
@@ -65,7 +65,7 @@ URIValue::operator = (URIValue & x)
}
URIValue &
-URIValue::operator = (const QCString & s)
+URIValue::operator = (const TQCString & s)
{
Value::operator = (s);
return *this;
@@ -118,14 +118,14 @@ URIValue::schemeSpecificPart()
}
void
-URIValue::setScheme(const QCString & s)
+URIValue::setScheme(const TQCString & s)
{
parse();
scheme_ = s;
}
void
-URIValue::setSchemeSpecificPart(const QCString & s)
+URIValue::setSchemeSpecificPart(const TQCString & s)
{
parse();
schemeSpecificPart_ = s;