diff options
Diffstat (limited to 'kaddressbook/customfieldswidget.cpp')
-rw-r--r-- | kaddressbook/customfieldswidget.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kaddressbook/customfieldswidget.cpp b/kaddressbook/customfieldswidget.cpp index d78c48c61..1466e9900 100644 --- a/kaddressbook/customfieldswidget.cpp +++ b/kaddressbook/customfieldswidget.cpp @@ -42,9 +42,9 @@ #include "customfieldswidget.h" -AddFieldDialog::AddFieldDialog( TQWidget *tqparent, const char *name ) +AddFieldDialog::AddFieldDialog( TQWidget *parent, const char *name ) : KDialogBase( Plain, i18n( "Add Field" ), Ok | Cancel, - Ok, tqparent, name, true, true ) + Ok, parent, name, true, true ) { TQWidget *page = plainPage(); @@ -121,8 +121,8 @@ void AddFieldDialog::nameChanged( const TQString &name ) enableButton( Ok, !name.isEmpty() ); } -FieldWidget::FieldWidget( TQWidget *tqparent, const char *name ) - : TQWidget( tqparent, name ) +FieldWidget::FieldWidget( TQWidget *parent, const char *name ) + : TQWidget( parent, name ) { TQVBoxLayout *tqlayout = new TQVBoxLayout( this, KDialog::marginHint(), KDialog::spacingHint() ); @@ -377,8 +377,8 @@ void FieldWidget::recalculateLayout() } CustomFieldsWidget::CustomFieldsWidget( KABC::AddressBook *ab, - TQWidget *tqparent, const char *name ) - : KAB::ContactEditorWidget( ab, tqparent, name ) + TQWidget *parent, const char *name ) + : KAB::ContactEditorWidget( ab, parent, name ) { initGUI(); |