diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 03:45:53 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-01-07 03:45:53 +0000 |
commit | 10308be19ef7fa44699562cc75946e7ea1fdf6b9 (patch) | |
tree | 4bc444c00a79e88105f2cfce5b6209994c413ca0 /kabc/addressbook.h | |
parent | 307136d8eef0ba133b78ceee8e901138d4c996a1 (diff) | |
download | tdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.tar.gz tdelibs-10308be19ef7fa44699562cc75946e7ea1fdf6b9.zip |
Revert automated changes
Sorry guys, they are just not ready for prime time
Work will continue as always
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1212479 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kabc/addressbook.h')
-rw-r--r-- | kabc/addressbook.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kabc/addressbook.h b/kabc/addressbook.h index 3a51736ed..0da25b30e 100644 --- a/kabc/addressbook.h +++ b/kabc/addressbook.h @@ -40,7 +40,7 @@ class Ticket; This class provides access to a collection of address book entries. */ -class KABC_EXPORT AddressBook : public TQObject +class KABC_EXPORT AddressBook : public QObject { Q_OBJECT @@ -113,7 +113,7 @@ class KABC_EXPORT AddressBook : public TQObject Constructs an address book object. The resources are loaded automatically. - @param config The config file which tqcontains the resource settings. + @param config The config file which contains the resource settings. */ AddressBook( const TQString &config ); @@ -207,7 +207,7 @@ class KABC_EXPORT AddressBook : public TQObject /** Insert an addressee into the address book. If an addressee with the same - unique id already exists, it is tqreplaced by the new one, otherwise it is + unique id already exists, it is replaced by the new one, otherwise it is appended. @param addr The addressee which shall be insert. @@ -235,7 +235,7 @@ class KABC_EXPORT AddressBook : public TQObject @param addr The addresee you are looking for. */ - Iterator tqfind( const Addressee &addr ); // KDE4: const + Iterator find( const Addressee &addr ); // KDE4: const /** Searches an addressee with the specified unique identifier. @@ -244,7 +244,7 @@ class KABC_EXPORT AddressBook : public TQObject @return The addressee with the specified unique identifier or an empty addressee. */ - Addressee tqfindByUid( const TQString &uid ); // KDE4: const + Addressee findByUid( const TQString &uid ); // KDE4: const /** Returns a list of all addressees in the address book. @@ -257,7 +257,7 @@ class KABC_EXPORT AddressBook : public TQObject @param name The name you are looking for. @return A list of all matching addressees. */ - Addressee::List tqfindByName( const TQString &name ); // KDE4: const + Addressee::List findByName( const TQString &name ); // KDE4: const /** Searches all addressees which match the specified email address. @@ -265,7 +265,7 @@ class KABC_EXPORT AddressBook : public TQObject @param email The email address you are looking for. @return A list of all matching addressees. */ - Addressee::List tqfindByEmail( const TQString &email ); // KDE4: const + Addressee::List findByEmail( const TQString &email ); // KDE4: const /** Searches all addressees which belongs to the specified category. @@ -273,7 +273,7 @@ class KABC_EXPORT AddressBook : public TQObject @param category The category you are looking for. @return A list of all matching addressees. */ - Addressee::List tqfindByCategory( const TQString &category ); // KDE4: const + Addressee::List findByCategory( const TQString &category ); // KDE4: const /** Returns a string identifying this addressbook. The identifier is |