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/addresseelist.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/addresseelist.h')
-rw-r--r-- | kabc/addresseelist.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kabc/addresseelist.h b/kabc/addresseelist.h index 2e6df06e4..7c9df0275 100644 --- a/kabc/addresseelist.h +++ b/kabc/addresseelist.h @@ -22,7 +22,7 @@ #ifndef KABC_ADDRESSEELIST_H #define KABC_ADDRESSEELIST_H -#include <qvaluelist.h> +#include <tqvaluelist.h> #include "addressee.h" @@ -87,11 +87,11 @@ class KABC_EXPORT GivenName // fallback to family name typedef enum { Uid, Name, FormattedName, FamilyName, GivenName } SortingCriterion; /** - * @short a QValueList of Addressee, with sorting functionality + * @short a TQValueList of Addressee, with sorting functionality * - * This class extends the functionality of QValueList with + * This class extends the functionality of TQValueList with * sorting methods specific to the Addressee class. It can be used - * just like any other QValueList but is no template class. + * just like any other TQValueList but is no template class. * * An AddresseeList does not automatically keep sorted when addressees * are added or removed or the sorting order is changed, as this would @@ -99,7 +99,7 @@ typedef enum { Uid, Name, FormattedName, FamilyName, GivenName } SortingCriterio * such operations you have to call {@link #sort} or {@link #sortBy} to * create a defined order again. * - * Iterator usage is inherited by QValueList and extensively documented + * Iterator usage is inherited by TQValueList and extensively documented * there. Please remember that the state of an iterator is undefined * after any sorting operation. * @@ -109,13 +109,13 @@ typedef enum { Uid, Name, FormattedName, FamilyName, GivenName } SortingCriterio * * @author Jost Schenck jost@schenck.de */ -class KABC_EXPORT AddresseeList : public QValueList<Addressee> +class KABC_EXPORT AddresseeList : public TQValueList<Addressee> { public: AddresseeList(); ~AddresseeList(); AddresseeList( const AddresseeList & ); - AddresseeList( const QValueList<Addressee> & ); + AddresseeList( const TQValueList<Addressee> & ); /** * Debug output. |