diff options
Diffstat (limited to 'kaddressbook/geowidget.h')
-rw-r--r-- | kaddressbook/geowidget.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kaddressbook/geowidget.h b/kaddressbook/geowidget.h index f6f8dffd5..7021b4fd0 100644 --- a/kaddressbook/geowidget.h +++ b/kaddressbook/geowidget.h @@ -54,7 +54,7 @@ class GeoWidget : public KAB::ContactEditorWidget TQ_OBJECT public: - GeoWidget( KABC::AddressBook *ab, TQWidget *tqparent, const char *name = 0 ); + GeoWidget( KABC::AddressBook *ab, TQWidget *parent, const char *name = 0 ); ~GeoWidget(); void loadContact( KABC::Addressee *addr ); @@ -81,7 +81,7 @@ class GeoDialog : public KDialogBase TQ_OBJECT public: - GeoDialog( TQWidget *tqparent, const char *name = 0 ); + GeoDialog( TQWidget *parent, const char *name = 0 ); ~GeoDialog(); void setLatitude( double latitude ); @@ -127,7 +127,7 @@ class GeoMapWidget : public TQWidget TQ_OBJECT public: - GeoMapWidget( TQWidget *tqparent, const char *name = 0 ); + GeoMapWidget( TQWidget *parent, const char *name = 0 ); ~GeoMapWidget(); void setLatitude( double latitude ); @@ -151,9 +151,9 @@ class GeoMapWidget : public TQWidget class GeoWidgetFactory : 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 GeoWidget( ab, tqparent, name ); + return new GeoWidget( ab, parent, name ); } TQString pageIdentifier() const { return "misc"; } |