diff options
Diffstat (limited to 'kaddressbook/interfaces/contacteditorwidget.h')
-rw-r--r-- | kaddressbook/interfaces/contacteditorwidget.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kaddressbook/interfaces/contacteditorwidget.h b/kaddressbook/interfaces/contacteditorwidget.h index c8efa56c1..85195dd84 100644 --- a/kaddressbook/interfaces/contacteditorwidget.h +++ b/kaddressbook/interfaces/contacteditorwidget.h @@ -42,7 +42,7 @@ class KDE_EXPORT ContactEditorWidget : public TQWidget public: typedef TQValueList<ContactEditorWidget*> List; - ContactEditorWidget( KABC::AddressBook *ab, TQWidget *parent, const char *name = 0 ); + ContactEditorWidget( TDEABC::AddressBook *ab, TQWidget *parent, const char *name = 0 ); ~ContactEditorWidget(); /** @@ -62,13 +62,13 @@ class KDE_EXPORT ContactEditorWidget : public TQWidget /** Load the contacts data into the GUI. */ - virtual void loadContact( KABC::Addressee *addr ) = 0; + virtual void loadContact( TDEABC::Addressee *addr ) = 0; /** Save the data from the GUI into the passed contact object. */ - virtual void storeContact( KABC::Addressee *addr ) = 0; + virtual void storeContact( TDEABC::Addressee *addr ) = 0; /** Sets whether the contact should be presented as @@ -104,10 +104,10 @@ class KDE_EXPORT ContactEditorWidget : public TQWidget /** Returns a pointer to the address book object. */ - KABC::AddressBook *addressBook() const; + TDEABC::AddressBook *addressBook() const; private: - KABC::AddressBook *mAddressBook; + TDEABC::AddressBook *mAddressBook; bool mModified; class ContactEditorWidgetPrivate; @@ -117,7 +117,7 @@ class KDE_EXPORT ContactEditorWidget : public TQWidget class ContactEditorWidgetFactory : public KLibFactory { public: - virtual ContactEditorWidget *createWidget( KABC::AddressBook *ab, TQWidget *parent, + virtual ContactEditorWidget *createWidget( TDEABC::AddressBook *ab, TQWidget *parent, const char *name = 0 ) = 0; /** |