summaryrefslogtreecommitdiffabout
path: root/kabc/vcard/URIValue.cpp
Side-by-side diff
Diffstat (limited to 'kabc/vcard/URIValue.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--kabc/vcard/URIValue.cpp16
1 files changed, 9 insertions, 7 deletions
diff --git a/kabc/vcard/URIValue.cpp b/kabc/vcard/URIValue.cpp
index c1d1022..26da7f4 100644
--- a/kabc/vcard/URIValue.cpp
+++ b/kabc/vcard/URIValue.cpp
@@ -15,66 +15,68 @@
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include <VCardURIValue.h>
#include <VCardValue.h>
+//Added by qt3to4:
+#include <Q3CString>
using namespace VCARD;
URIValue::URIValue()
: Value()
{
}
-URIValue::URIValue(const QCString & scheme, const QCString & schemeSpecificPart)
+URIValue::URIValue(const Q3CString & scheme, const Q3CString & schemeSpecificPart)
: Value(),
scheme_ (scheme),
schemeSpecificPart_ (schemeSpecificPart)
{
parsed_ = true;
}
URIValue::URIValue(const URIValue & x)
: Value (x),
scheme_ (x.scheme_),
schemeSpecificPart_ (x.schemeSpecificPart_)
{
}
-URIValue::URIValue(const QCString & s)
+URIValue::URIValue(const Q3CString & s)
: Value(s)
{
}
URIValue &
URIValue::operator = (URIValue & x)
{
if (*this == x) return *this;
scheme_ = x.scheme_;
schemeSpecificPart_ = x.schemeSpecificPart_;
Value::operator = (x);
return *this;
}
URIValue &
-URIValue::operator = (const QCString & s)
+URIValue::operator = (const Q3CString & s)
{
Value::operator = (s);
return *this;
}
bool
URIValue::operator == (URIValue & x)
{
x.parse();
return (
(scheme_ == x.scheme_) &&
(schemeSpecificPart_ == x.schemeSpecificPart_));
@@ -94,40 +96,40 @@ URIValue::_parse()
return;
scheme_ = strRep_.left(split);
schemeSpecificPart_ = strRep_.mid(split + 1);
}
void
URIValue::_assemble()
{
strRep_ = scheme_ + ':' + schemeSpecificPart_;
}
- QCString
+ Q3CString
URIValue::scheme()
{
parse();
return scheme_;
}
- QCString
+ Q3CString
URIValue::schemeSpecificPart()
{
parse();
return schemeSpecificPart_;
}
void
-URIValue::setScheme(const QCString & s)
+URIValue::setScheme(const Q3CString & s)
{
parse();
scheme_ = s;
}
void
-URIValue::setSchemeSpecificPart(const QCString & s)
+URIValue::setSchemeSpecificPart(const Q3CString & s)
{
parse();
schemeSpecificPart_ = s;
}