author | zautrix <zautrix> | 2004-10-09 10:29:56 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-10-09 10:29:56 (UTC) |
commit | ed1eac5e36e675b030cb5a5aa90fb2d44eb40c73 (patch) (side-by-side diff) | |
tree | 2d4dd35819f17c4b5758b64defd40e7a4bf3cbde /kaddressbook | |
parent | 69af2ac56474e3a1e3e59be318caf53f5d357f94 (diff) | |
download | kdepimpi-ed1eac5e36e675b030cb5a5aa90fb2d44eb40c73.zip kdepimpi-ed1eac5e36e675b030cb5a5aa90fb2d44eb40c73.tar.gz kdepimpi-ed1eac5e36e675b030cb5a5aa90fb2d44eb40c73.tar.bz2 |
phone fixes
-rw-r--r-- | kaddressbook/kabcore.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp index efcd492..7ec3fca 100644 --- a/kaddressbook/kabcore.cpp +++ b/kaddressbook/kabcore.cpp @@ -2806,13 +2806,14 @@ bool KABCore::sync(KSyncManager* manager, QString filename, int mode) if ( syncOK ) { if ( syncManager->mWriteBackFile ) { if ( external ) abLocal.removeSyncAddressees( !isXML); qDebug("Saving remote AB "); - abLocal.saveAB(); + if ( ! abLocal.saveAB()) + qDebug("Error writing back AB to file "); if ( isXML ) { // afterwrite processing abLocal.postExternSync( mAddressBook,mCurrentSyncDevice ); } } } |