summaryrefslogtreecommitdiffabout
path: root/kabc
authorulf69 <ulf69>2004-09-29 02:41:02 (UTC)
committer ulf69 <ulf69>2004-09-29 02:41:02 (UTC)
commitf7810320ed36a03c96d00436f6b589b9b5ca8c30 (patch) (side-by-side diff)
tree2d47b246b4fef9e7001573405018543e15849b5f /kabc
parentcd2cb3a9e2ea93909efc9efa16ddd80c2d2b5408 (diff)
downloadkdepimpi-f7810320ed36a03c96d00436f6b589b9b5ca8c30.zip
kdepimpi-f7810320ed36a03c96d00436f6b589b9b5ca8c30.tar.gz
kdepimpi-f7810320ed36a03c96d00436f6b589b9b5ca8c30.tar.bz2
set env variable KABC_DEBUG to display processewd addresses while loading
Diffstat (limited to 'kabc') (more/less context) (ignore whitespace changes)
-rw-r--r--kabc/vcardformatimpl.cpp11
-rw-r--r--kabc/vcardformatimpl.h5
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
@@ -41,6 +41,13 @@ $Id$
using namespace KABC;
using namespace VCARD;
+int VCardFormatImpl::debug = -1;
+
+VCardFormatImpl::VCardFormatImpl()
+{
+ debug = (getenv("KABC_DEBUG") != 0);
+}
+
bool VCardFormatImpl::load( Addressee &addressee, QFile *file )
{
kdDebug(5700) << "VCardFormat::load()" << endl;
@@ -80,6 +87,10 @@ bool VCardFormatImpl::loadAll( AddressBook *addressBook, Resource *resource, QFi
loadAddressee( addressee, it.current() );
addressee.setResource( resource );
addressBook->insertAddressee( addressee );
+ if (debug == true)
+ {
+ printf("address %s loaded successfully\n", addressee.formattedName().latin1());
+ }
}
return true;
diff --git a/kabc/vcardformatimpl.h b/kabc/vcardformatimpl.h
index fa3d55f..4821047 100644
--- a/kabc/vcardformatimpl.h
+++ b/kabc/vcardformatimpl.h
@@ -49,6 +49,8 @@ class AddressBook;
class VCardFormatImpl
{
public:
+ VCardFormatImpl();
+
bool load( Addressee &, QFile *file );
bool loadAll( AddressBook *, Resource *, QFile *file );
void save( const Addressee &, QFile *file );
@@ -106,6 +108,9 @@ class VCardFormatImpl
void addAgentValue( VCARD::VCard *, const Agent & );
Agent readAgentValue( VCARD::ContentLine * );
+
+ private:
+ static int debug;
};
}