diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-20 16:27:27 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-20 16:27:27 -0600 |
commit | 94273bcb909fac42ef9427e3d8a614cab8c29c66 (patch) | |
tree | 91b99186971ecb475db3ca41b1b12df24029e389 /kaddressbook/searchmanager.h | |
parent | 41b65d69967ad0d35f8b4dd37ac63aad1cebdae9 (diff) | |
download | tdepim-94273bcb909fac42ef9427e3d8a614cab8c29c66.tar.gz tdepim-94273bcb909fac42ef9427e3d8a614cab8c29c66.zip |
Rename KABC namespace
Diffstat (limited to 'kaddressbook/searchmanager.h')
-rw-r--r-- | kaddressbook/searchmanager.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kaddressbook/searchmanager.h b/kaddressbook/searchmanager.h index 9e1370320..3972110c3 100644 --- a/kaddressbook/searchmanager.h +++ b/kaddressbook/searchmanager.h @@ -47,7 +47,7 @@ class SearchManager : public TQObject Equals }; - SearchManager( KABC::AddressBook *ab, + SearchManager( TDEABC::AddressBook *ab, TQObject *parent, const char *name = 0 ); /** @@ -59,12 +59,12 @@ class SearchManager : public TQObject @param field The field which shall be compared with the search string. @param type The type for the matching. */ - void search( const TQString &pattern, const KABC::Field::List &fields, Type type = Contains ); + void search( const TQString &pattern, const TDEABC::Field::List &fields, Type type = Contains ); /** Returns the contacts which matched the last search query. */ - KABC::Addressee::List contacts() const; + TDEABC::Addressee::List contacts() const; #ifdef TDEPIM_NEW_DISTRLISTS @@ -94,15 +94,15 @@ class SearchManager : public TQObject void reload(); private: - KABC::Addressee::List mContacts; + TDEABC::Addressee::List mContacts; #ifdef TDEPIM_NEW_DISTRLISTS TQString mSelectedDistributionList; KPIM::DistributionList::List mDistributionLists; #endif - KABC::AddressBook *mAddressBook; + TDEABC::AddressBook *mAddressBook; TQString mPattern; - KABC::Field::List mFields; + TDEABC::Field::List mFields; Type mType; }; |