diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kabc/vcardparser/vcard.h | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-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/vcardparser/vcard.h')
-rw-r--r-- | kabc/vcardparser/vcard.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kabc/vcardparser/vcard.h b/kabc/vcardparser/vcard.h index 73fcd1ea2..6afeeda26 100644 --- a/kabc/vcardparser/vcard.h +++ b/kabc/vcardparser/vcard.h @@ -22,17 +22,17 @@ #define VCARDPARSER_VCARD_H #include "vcardline.h" -#include <qmap.h> -#include <qstringlist.h> -#include <qvaluelist.h> +#include <tqmap.h> +#include <tqstringlist.h> +#include <tqvaluelist.h> namespace KABC { class VCard { public: - typedef QValueList<VCard> List; - typedef QMap< QString, VCardLine::List > LineMap; + typedef TQValueList<VCard> List; + typedef TQMap< TQString, VCardLine::List > LineMap; enum Version { v2_1, v3_0 }; @@ -52,7 +52,7 @@ class VCard * Returns a list of all identifiers that exists in the * vCard. */ - QStringList identifiers() const; + TQStringList identifiers() const; /** * Adds a VCardLine to the VCard @@ -62,12 +62,12 @@ class VCard /** * Returns all lines of the vcard with a special identifier. */ - VCardLine::List lines( const QString& identifier ) const; + VCardLine::List lines( const TQString& identifier ) const; /** * Returns only the first line of the vcard with a special identifier. */ - VCardLine line( const QString& identifier ) const; + VCardLine line( const TQString& identifier ) const; /** * Set the version of the vCard. |