diff options
Diffstat (limited to 'kaddressbook/ldapsearchdialog.h')
-rw-r--r-- | kaddressbook/ldapsearchdialog.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/kaddressbook/ldapsearchdialog.h b/kaddressbook/ldapsearchdialog.h index dba41fc54..8c368a116 100644 --- a/kaddressbook/ldapsearchdialog.h +++ b/kaddressbook/ldapsearchdialog.h @@ -23,7 +23,7 @@ #include "config.h" -#include <qptrlist.h> +#include <tqptrlist.h> #include <kabc/addressbook.h> #include <ldapclient.h> @@ -52,7 +52,7 @@ class LDAPSearchDialog : public KDialogBase Q_OBJECT public: - LDAPSearchDialog( KABC::AddressBook *ab, KABCore *core, QWidget* parent, const char* name = 0 ); + LDAPSearchDialog( KABC::AddressBook *ab, KABCore *core, TQWidget* parent, const char* name = 0 ); ~LDAPSearchDialog(); bool isOK() const { return mIsOK; } @@ -68,7 +68,7 @@ class LDAPSearchDialog : public KDialogBase void slotStartSearch(); void slotStopSearch(); void slotSearchDone(); - void slotError( const QString& ); + void slotError( const TQString& ); virtual void slotHelp(); virtual void slotUser1(); virtual void slotUser2(); @@ -79,12 +79,12 @@ class LDAPSearchDialog : public KDialogBase * unless they already exist. Returns the list of both the added * and the existing contacts. */ - KABC::Addressee::List importContactsUnlessTheyExist( const QValueList<ContactListItem*>& items, KABC::Resource * const resource ); + KABC::Addressee::List importContactsUnlessTheyExist( const TQValueList<ContactListItem*>& items, KABC::Resource * const resource ); protected: - QString selectedEMails() const; + TQString selectedEMails() const; - virtual void closeEvent( QCloseEvent* ); + virtual void closeEvent( TQCloseEvent* ); private: void saveSettings(); @@ -93,12 +93,12 @@ class LDAPSearchDialog : public KDialogBase KPIM::DistributionList selectDistributionList(); #endif - QString makeFilter( const QString& query, const QString& attr, bool startsWith ); + TQString makeFilter( const TQString& query, const TQString& attr, bool startsWith ); void cancelQuery(); int mNumHosts; - QPtrList<KPIM::LdapClient> mLdapClientList; + TQPtrList<KPIM::LdapClient> mLdapClientList; bool mIsOK; KABC::AddressBook *mAddressBook; KABCore *mCore; @@ -107,9 +107,9 @@ class LDAPSearchDialog : public KDialogBase KComboBox* mSearchType; KLineEdit* mSearchEdit; - QCheckBox* mRecursiveCheckbox; - QListView* mResultListView; - QPushButton* mSearchButton; + TQCheckBox* mRecursiveCheckbox; + TQListView* mResultListView; + TQPushButton* mSearchButton; class Private; Private* const d; }; |