summaryrefslogtreecommitdiffstats
path: root/kabc/vcardtool.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
commitffe8a83e053396df448e9413828527613ca3bd46 (patch)
treea73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kabc/vcardtool.h
parent682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff)
downloadtdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz
tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kabc/vcardtool.h')
-rw-r--r--kabc/vcardtool.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kabc/vcardtool.h b/kabc/vcardtool.h
index 2c78e8442..d59006341 100644
--- a/kabc/vcardtool.h
+++ b/kabc/vcardtool.h
@@ -44,25 +44,25 @@ class KABC_EXPORT VCardTool
Creates a string that contains the addressees from the list in
the vCard format.
*/
- QString createVCards( Addressee::List list, VCard::Version version = VCard::v3_0 );
+ TQString createVCards( Addressee::List list, VCard::Version version = VCard::v3_0 );
/**
Parses the string and returns a list of addressee objects.
*/
- Addressee::List parseVCards( const QString& vcard );
+ Addressee::List parseVCards( const TQString& vcard );
private:
/**
Split a string and replaces escaped separators on the fly with
unescaped ones.
*/
- QStringList splitString( const QChar &sep, const QString &value );
+ TQStringList splitString( const TQChar &sep, const TQString &value );
- QDateTime parseDateTime( const QString &str );
- QString createDateTime( const QDateTime &dateTime );
+ TQDateTime parseDateTime( const TQString &str );
+ TQString createDateTime( const TQDateTime &dateTime );
Picture parsePicture( const VCardLine &line );
- VCardLine createPicture( const QString &identifier, const Picture &pic );
+ VCardLine createPicture( const TQString &identifier, const Picture &pic );
Sound parseSound( const VCardLine &line );
VCardLine createSound( const Sound &snd );
@@ -76,8 +76,8 @@ class KABC_EXPORT VCardTool
Agent parseAgent( const VCardLine &line );
VCardLine createAgent( VCard::Version version, const Agent &agent );
- QMap<QString, int> mAddressTypeMap;
- QMap<QString, int> mPhoneTypeMap;
+ TQMap<TQString, int> mAddressTypeMap;
+ TQMap<TQString, int> mPhoneTypeMap;
class VCardToolPrivate;
VCardToolPrivate *d;