summaryrefslogtreecommitdiffstats
path: root/kaddressbook/searchmanager.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /kaddressbook/searchmanager.h
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz
tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 2179f6f60..88ce94c7b 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;
};