diff options
Diffstat (limited to 'kaddressbook/geowidget.cpp')
-rw-r--r-- | kaddressbook/geowidget.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kaddressbook/geowidget.cpp b/kaddressbook/geowidget.cpp index f7261bf7a..4ff19033e 100644 --- a/kaddressbook/geowidget.cpp +++ b/kaddressbook/geowidget.cpp @@ -44,7 +44,7 @@ #include "geowidget.h" -GeoWidget::GeoWidget( KABC::AddressBook *ab, TQWidget *parent, const char *name ) +GeoWidget::GeoWidget( TDEABC::AddressBook *ab, TQWidget *parent, const char *name ) : KAB::ContactEditorWidget( ab, parent, name ), mReadOnly( false ) { TQLabel *label = 0; @@ -105,9 +105,9 @@ GeoWidget::~GeoWidget() { } -void GeoWidget::loadContact( KABC::Addressee *addr ) +void GeoWidget::loadContact( TDEABC::Addressee *addr ) { - KABC::Geo geo = addr->geo(); + TDEABC::Geo geo = addr->geo(); if ( geo.isValid() ) { if ( !mReadOnly ) @@ -118,9 +118,9 @@ void GeoWidget::loadContact( KABC::Addressee *addr ) mGeoIsValid->setChecked( false ); } -void GeoWidget::storeContact( KABC::Addressee *addr ) +void GeoWidget::storeContact( TDEABC::Addressee *addr ) { - KABC::Geo geo; + TDEABC::Geo geo; if ( mGeoIsValid->isChecked() ) { geo.setLatitude( mLatitudeBox->value() ); |