author | ulf69 <ulf69> | 2004-09-29 02:41:02 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-09-29 02:41:02 (UTC) |
commit | f7810320ed36a03c96d00436f6b589b9b5ca8c30 (patch) (unidiff) | |
tree | 2d47b246b4fef9e7001573405018543e15849b5f | |
parent | cd2cb3a9e2ea93909efc9efa16ddd80c2d2b5408 (diff) | |
download | kdepimpi-f7810320ed36a03c96d00436f6b589b9b5ca8c30.zip kdepimpi-f7810320ed36a03c96d00436f6b589b9b5ca8c30.tar.gz kdepimpi-f7810320ed36a03c96d00436f6b589b9b5ca8c30.tar.bz2 |
set env variable KABC_DEBUG to display processewd addresses while loading
-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 | |||
@@ -42,4 +42,11 @@ using namespace KABC; | |||
42 | using namespace VCARD; | 42 | using namespace VCARD; |
43 | 43 | ||
44 | int VCardFormatImpl::debug = -1; | ||
45 | |||
46 | VCardFormatImpl::VCardFormatImpl() | ||
47 | { | ||
48 | debug = (getenv("KABC_DEBUG") != 0); | ||
49 | } | ||
50 | |||
44 | bool VCardFormatImpl::load( Addressee &addressee, QFile *file ) | 51 | bool VCardFormatImpl::load( Addressee &addressee, QFile *file ) |
45 | { | 52 | { |
@@ -81,4 +88,8 @@ bool VCardFormatImpl::loadAll( AddressBook *addressBook, Resource *resource, QFi | |||
81 | addressee.setResource( resource ); | 88 | addressee.setResource( resource ); |
82 | addressBook->insertAddressee( addressee ); | 89 | addressBook->insertAddressee( addressee ); |
90 | if (debug == true) | ||
91 | { | ||
92 | printf("address %s loaded successfully\n", addressee.formattedName().latin1()); | ||
93 | } | ||
83 | } | 94 | } |
84 | 95 | ||
diff --git a/kabc/vcardformatimpl.h b/kabc/vcardformatimpl.h index fa3d55f..4821047 100644 --- a/kabc/vcardformatimpl.h +++ b/kabc/vcardformatimpl.h | |||
@@ -50,4 +50,6 @@ class VCardFormatImpl | |||
50 | { | 50 | { |
51 | public: | 51 | public: |
52 | VCardFormatImpl(); | ||
53 | |||
52 | bool load( Addressee &, QFile *file ); | 54 | bool load( Addressee &, QFile *file ); |
53 | bool loadAll( AddressBook *, Resource *, QFile *file ); | 55 | bool loadAll( AddressBook *, Resource *, QFile *file ); |
@@ -107,4 +109,7 @@ class VCardFormatImpl | |||
107 | void addAgentValue( VCARD::VCard *, const Agent & ); | 109 | void addAgentValue( VCARD::VCard *, const Agent & ); |
108 | Agent readAgentValue( VCARD::ContentLine * ); | 110 | Agent readAgentValue( VCARD::ContentLine * ); |
111 | |||
112 | private: | ||
113 | static int debug; | ||
109 | }; | 114 | }; |
110 | 115 | ||