-rw-r--r-- | kabc/vcardformatimpl.cpp | 11 | ||||
-rw-r--r-- | kabc/vcardformatimpl.h | 5 |
2 files changed, 16 insertions, 0 deletions
diff --git a/kabc/vcardformatimpl.cpp b/kabc/vcardformatimpl.cpp index 1bf2cde..ede5773 100644 --- a/kabc/vcardformatimpl.cpp +++ b/kabc/vcardformatimpl.cpp @@ -43,2 +43,9 @@ using namespace VCARD; +int VCardFormatImpl::debug = -1; + +VCardFormatImpl::VCardFormatImpl() +{ + debug = (getenv("KABC_DEBUG") != 0); +} + bool VCardFormatImpl::load( Addressee &addressee, QFile *file ) @@ -82,2 +89,6 @@ bool VCardFormatImpl::loadAll( AddressBook *addressBook, Resource *resource, QFi addressBook->insertAddressee( addressee ); + if (debug == true) + { + printf("address %s loaded successfully\n", addressee.formattedName().latin1()); + } } diff --git a/kabc/vcardformatimpl.h b/kabc/vcardformatimpl.h index fa3d55f..4821047 100644 --- a/kabc/vcardformatimpl.h +++ b/kabc/vcardformatimpl.h @@ -51,2 +51,4 @@ class VCardFormatImpl public: + VCardFormatImpl(); + bool load( Addressee &, QFile *file ); @@ -108,2 +110,5 @@ class VCardFormatImpl Agent readAgentValue( VCARD::ContentLine * ); + + private: + static int debug; }; |