diff options
Diffstat (limited to 'kaddressbook/viewconfigurefieldspage.cpp')
-rw-r--r-- | kaddressbook/viewconfigurefieldspage.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kaddressbook/viewconfigurefieldspage.cpp b/kaddressbook/viewconfigurefieldspage.cpp index 453f47587..7951bc770 100644 --- a/kaddressbook/viewconfigurefieldspage.cpp +++ b/kaddressbook/viewconfigurefieldspage.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 <tqlabel.h> @@ -36,14 +36,14 @@ #include "viewconfigurefieldspage.h" -class FieldItem : public QListBoxText +class FieldItem : public TQListBoxText { public: - FieldItem( TQListBox *parent, KABC::Field *field ) - : TQListBoxText( parent, field->label() ), mField( field ) {} + FieldItem( TQListBox *tqparent, KABC::Field *field ) + : TQListBoxText( tqparent, field->label() ), mField( field ) {} - FieldItem( TQListBox *parent, KABC::Field *field, int index ) - : TQListBoxText( parent, field->label(), parent->item( index ) ), + FieldItem( TQListBox *tqparent, KABC::Field *field, int index ) + : TQListBoxText( tqparent, field->label(), tqparent->item( index ) ), mField( field ) {} KABC::Field *field() { return mField; } @@ -54,9 +54,9 @@ class FieldItem : public QListBoxText ViewConfigureFieldsPage::ViewConfigureFieldsPage( KABC::AddressBook *ab, - TQWidget *parent, + TQWidget *tqparent, const char *name ) - : TQWidget( parent, name ), mAddressBook( ab ) + : TQWidget( tqparent, name ), mAddressBook( ab ) { initGUI(); } |