summaryrefslogtreecommitdiffstats
path: root/kaddressbook/ldapsearchdialog.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/ldapsearchdialog.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/ldapsearchdialog.h')
-rw-r--r--kaddressbook/ldapsearchdialog.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/kaddressbook/ldapsearchdialog.h b/kaddressbook/ldapsearchdialog.h
index dba41fc5..8c368a11 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;
};