summaryrefslogtreecommitdiffstats
path: root/kaddressbook/searchmanager.h
diff options
context:
space:
mode:
Diffstat (limited to 'kaddressbook/searchmanager.h')
-rw-r--r--kaddressbook/searchmanager.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/kaddressbook/searchmanager.h b/kaddressbook/searchmanager.h
index 2179f6f6..88ce94c7 100644
--- a/kaddressbook/searchmanager.h
+++ b/kaddressbook/searchmanager.h
@@ -25,7 +25,7 @@
#define SEARCHMANAGER_H
#include <config.h> // for KDEPIM_NEW_DISTRLISTS
-#include <qobject.h>
+#include <tqobject.h>
#include <kabc/stdaddressbook.h>
#ifdef KDEPIM_NEW_DISTRLISTS
@@ -47,7 +47,7 @@ class SearchManager : public QObject
};
SearchManager( KABC::AddressBook *ab,
- QObject *parent, const char *name = 0 );
+ TQObject *parent, const char *name = 0 );
/**
This method takes a pattern and searches for a match of the specified
@@ -58,7 +58,7 @@ class SearchManager : public QObject
@param field The field which shall be compared with the search string.
@param type The type for the matching.
*/
- void search( const QString &pattern, const KABC::Field::List &fields, Type type = Contains );
+ void search( const TQString &pattern, const KABC::Field::List &fields, Type type = Contains );
/**
Returns the contacts which matched the last search query.
@@ -70,7 +70,7 @@ class SearchManager : public QObject
/**
sets the distribution list to be shown
*/
- void setSelectedDistributionList( const QString &name );
+ void setSelectedDistributionList( const TQString &name );
/**
Returns all the distribution lists.
@@ -80,7 +80,7 @@ class SearchManager : public QObject
/**
Returns the name of all the distribution lists.
*/
- QStringList distributionListNames() const;
+ TQStringList distributionListNames() const;
#endif
signals:
@@ -95,12 +95,12 @@ class SearchManager : public QObject
private:
KABC::Addressee::List mContacts;
#ifdef KDEPIM_NEW_DISTRLISTS
- QString mSelectedDistributionList;
+ TQString mSelectedDistributionList;
KPIM::DistributionList::List mDistributionLists;
#endif
KABC::AddressBook *mAddressBook;
- QString mPattern;
+ TQString mPattern;
KABC::Field::List mFields;
Type mType;
};