diff options
Diffstat (limited to 'kaddressbook/soundwidget.h')
-rw-r--r-- | kaddressbook/soundwidget.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kaddressbook/soundwidget.h b/kaddressbook/soundwidget.h index 66fb74779..c589ec5bb 100644 --- a/kaddressbook/soundwidget.h +++ b/kaddressbook/soundwidget.h @@ -39,7 +39,7 @@ class SoundWidget : public KAB::ContactEditorWidget TQ_OBJECT public: - SoundWidget( KABC::AddressBook *ab, TQWidget *tqparent, const char *name = 0 ); + SoundWidget( KABC::AddressBook *ab, TQWidget *parent, const char *name = 0 ); ~SoundWidget(); void loadContact( KABC::Addressee *addr ); @@ -65,9 +65,9 @@ class SoundWidget : public KAB::ContactEditorWidget class SoundWidgetFactory : public KAB::ContactEditorWidgetFactory { public: - KAB::ContactEditorWidget *createWidget( KABC::AddressBook *ab, TQWidget *tqparent, const char *name ) + KAB::ContactEditorWidget *createWidget( KABC::AddressBook *ab, TQWidget *parent, const char *name ) { - return new SoundWidget( ab, tqparent, name ); + return new SoundWidget( ab, parent, name ); } TQString pageIdentifier() const { return "misc"; } |