diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-20 16:27:27 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-20 16:27:27 -0600 |
commit | 94273bcb909fac42ef9427e3d8a614cab8c29c66 (patch) | |
tree | 91b99186971ecb475db3ca41b1b12df24029e389 /kaddressbook/interfaces/contacteditorwidget.h | |
parent | 41b65d69967ad0d35f8b4dd37ac63aad1cebdae9 (diff) | |
download | tdepim-94273bcb909fac42ef9427e3d8a614cab8c29c66.tar.gz tdepim-94273bcb909fac42ef9427e3d8a614cab8c29c66.zip |
Rename KABC namespace
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; /** |