-rw-r--r-- | kabc/vcardformatimpl.cpp | 11 |
1 files changed, 11 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 @@ -42,4 +42,11 @@ using namespace KABC; using namespace VCARD; +int VCardFormatImpl::debug = -1; + +VCardFormatImpl::VCardFormatImpl() +{ + debug = (getenv("KABC_DEBUG") != 0); +} + bool VCardFormatImpl::load( Addressee &addressee, QFile *file ) { @@ -81,4 +88,8 @@ bool VCardFormatImpl::loadAll( AddressBook *addressBook, Resource *resource, QFi addressee.setResource( resource ); addressBook->insertAddressee( addressee ); + if (debug == true) + { + printf("address %s loaded successfully\n", addressee.formattedName().latin1()); + } } |