diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-20 16:27:42 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-20 16:27:42 -0600 |
commit | 2941e915f3c48a0a9251b25d45c67fccbdd1fab7 (patch) | |
tree | a5a8ae93c0b76ec66ff8a1c29b9cb22a69b2e761 /kdeaccounts-plugin/kdeaccountsformat.h | |
parent | 9e6f0803a756d005beba31ce006fb0f2a8c8e348 (diff) | |
download | tdesdk-2941e915f3c48a0a9251b25d45c67fccbdd1fab7.tar.gz tdesdk-2941e915f3c48a0a9251b25d45c67fccbdd1fab7.zip |
Rename KABC namespace
Diffstat (limited to 'kdeaccounts-plugin/kdeaccountsformat.h')
-rw-r--r-- | kdeaccounts-plugin/kdeaccountsformat.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kdeaccounts-plugin/kdeaccountsformat.h b/kdeaccounts-plugin/kdeaccountsformat.h index ea763c38..3fc6bb7e 100644 --- a/kdeaccounts-plugin/kdeaccountsformat.h +++ b/kdeaccounts-plugin/kdeaccountsformat.h @@ -12,29 +12,29 @@ #include <tdeabc/formatplugin.h> -namespace KABC { +namespace TDEABC { class AddressBook; } -class KDEAccountsFormat : public KABC::FormatPlugin +class KDEAccountsFormat : public TDEABC::FormatPlugin { public: KDEAccountsFormat() {} ~KDEAccountsFormat() {} - virtual bool loadAll( KABC::AddressBook *, - KABC::Resource *resource, TQFile *file ); + virtual bool loadAll( TDEABC::AddressBook *, + TDEABC::Resource *resource, TQFile *file ); - virtual bool load( KABC::Addressee&, TQFile *) + virtual bool load( TDEABC::Addressee&, TQFile *) { tqDebug("*** KDE Accounts format: load single entry not supported."); return false; } - virtual void save( const KABC::Addressee&, TQFile *) + virtual void save( const TDEABC::Addressee&, TQFile *) { tqDebug("*** KDE Accounts format: save not supported."); } - virtual void saveAll( KABC::AddressBook *, KABC::Resource *, TQFile *) + virtual void saveAll( TDEABC::AddressBook *, TDEABC::Resource *, TQFile *) { tqDebug("*** KDE Accounts format: save not supported."); } |