summaryrefslogtreecommitdiffstats
path: root/kaddressbook/searchmanager.h
diff options
context:
space:
mode:
Diffstat (limited to 'kaddressbook/searchmanager.h')
-rw-r--r--kaddressbook/searchmanager.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kaddressbook/searchmanager.h b/kaddressbook/searchmanager.h
index 9e137032..3972110c 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;
};