diff options
Diffstat (limited to 'kaddressbook/kcmconfigs/ldapoptionswidget.cpp')
-rw-r--r-- | kaddressbook/kcmconfigs/ldapoptionswidget.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kaddressbook/kcmconfigs/ldapoptionswidget.cpp b/kaddressbook/kcmconfigs/ldapoptionswidget.cpp index 639cec027..e0bbca236 100644 --- a/kaddressbook/kcmconfigs/ldapoptionswidget.cpp +++ b/kaddressbook/kcmconfigs/ldapoptionswidget.cpp @@ -17,8 +17,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. As a special exception, permission is given to link this program - with any edition of Qt, and distribute the resulting executable, - without including the source code for Qt in the source distribution. + with any edition of TQt, and distribute the resulting executable, + without including the source code for TQt in the source distribution. */ #include <tqgroupbox.h> @@ -42,11 +42,11 @@ #include <tqvbox.h> #include <kiconloader.h> -class LDAPItem : public QCheckListItem +class LDAPItem : public TQCheckListItem { public: - LDAPItem( TQListView *parent, const KPIM::LdapServer &server, bool isActive = false ) - : TQCheckListItem( parent, parent->lastItem(), TQString::null, TQCheckListItem::CheckBox ), + LDAPItem( TQListView *tqparent, const KPIM::LdapServer &server, bool isActive = false ) + : TQCheckListItem( tqparent, tqparent->lastItem(), TQString(), TQCheckListItem::CheckBox ), mIsActive( isActive ) { setServer( server ); @@ -69,15 +69,15 @@ class LDAPItem : public QCheckListItem bool mIsActive; }; -LDAPOptionsWidget::LDAPOptionsWidget( TQWidget* parent, const char* name ) - : TQWidget( parent, name ) +LDAPOptionsWidget::LDAPOptionsWidget( TQWidget* tqparent, const char* name ) + : TQWidget( tqparent, name ) { initGUI(); mHostListView->setSorting( -1 ); mHostListView->setAllColumnsShowFocus( true ); mHostListView->setFullWidth( true ); - mHostListView->addColumn( TQString::null ); + mHostListView->addColumn( TQString() ); mHostListView->header()->hide(); connect( mHostListView, TQT_SIGNAL( selectionChanged( TQListViewItem* ) ), |