summaryrefslogtreecommitdiffabout
Side-by-side diff
Diffstat (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
@@ -38,12 +38,19 @@ $Id$
#include "addressbook.h"
#include "vcardformatimpl.h"
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;
QByteArray fdata = file->readAll();
QCString data(fdata.data(), fdata.size()+1);
@@ -77,12 +84,16 @@ bool VCardFormatImpl::loadAll( AddressBook *addressBook, Resource *resource, QFi
//US VCard v(*it.current());
Addressee addressee;
//US loadAddressee( addressee, v );
loadAddressee( addressee, it.current() );
addressee.setResource( resource );
addressBook->insertAddressee( addressee );
+ if (debug == true)
+ {
+ printf("address %s loaded successfully\n", addressee.formattedName().latin1());
+ }
}
return true;
}
void VCardFormatImpl::save( const Addressee &addressee, QFile *file )
diff --git a/kabc/vcardformatimpl.h b/kabc/vcardformatimpl.h
index fa3d55f..4821047 100644
--- a/kabc/vcardformatimpl.h
+++ b/kabc/vcardformatimpl.h
@@ -46,12 +46,14 @@ class AddressBook;
This class implements reading and writing of address book information using
the vCard format. It requires the vCard lib from kdepim.
*/
class VCardFormatImpl
{
public:
+ VCardFormatImpl();
+
bool load( Addressee &, QFile *file );
bool loadAll( AddressBook *, Resource *, QFile *file );
void save( const Addressee &, QFile *file );
void saveAll( AddressBook *, Resource *, QFile *file );
bool readFromString( const QString &vcard, Addressee &addr );
@@ -103,10 +105,13 @@ class VCardFormatImpl
void addSoundValue( VCARD::VCard *, const Sound &, const Addressee &, bool );
Sound readSoundValue( VCARD::ContentLine *, const Addressee &addr );
void addAgentValue( VCARD::VCard *, const Agent & );
Agent readAgentValue( VCARD::ContentLine * );
+
+ private:
+ static int debug;
};
}
#endif