author | zautrix <zautrix> | 2004-10-27 17:50:52 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-10-27 17:50:52 (UTC) |
commit | 85a0e0d9b1d60805cb4947be1c296c18e73c82b8 (patch) (unidiff) | |
tree | 64920209dc3cded8b3241d44138b1a82afb300cf | |
parent | 1df6fe03fe931bfbc83e855e47472a80ec4ba08e (diff) | |
download | kdepimpi-85a0e0d9b1d60805cb4947be1c296c18e73c82b8.zip kdepimpi-85a0e0d9b1d60805cb4947be1c296c18e73c82b8.tar.gz kdepimpi-85a0e0d9b1d60805cb4947be1c296c18e73c82b8.tar.bz2 |
sync fixes
-rw-r--r-- | kde2file/abdump/main.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/kde2file/abdump/main.cpp b/kde2file/abdump/main.cpp index d452ee9..1ee64f5 100644 --- a/kde2file/abdump/main.cpp +++ b/kde2file/abdump/main.cpp | |||
@@ -131,16 +131,17 @@ int main( int argc, char *argv[] ) | |||
131 | data = t.read(); | 131 | data = t.read(); |
132 | file.close(); | 132 | file.close(); |
133 | KABC::VCardConverter converter; | 133 | KABC::VCardConverter converter; |
134 | list = converter.parseVCards( data ); | 134 | list = converter.parseVCards( data ); |
135 | qDebug("kdeABdump::file has %d entries", list.count()); | 135 | qDebug("kdeABdump::file has %d entries", list.count()); |
136 | 136 | ||
137 | KABC::Addressee::List::Iterator it; | 137 | KABC::Addressee::List::Iterator it; |
138 | for ( it = list.begin();it != list.end();++it) { | 138 | for ( it = list.begin();it != list.end();++it) { |
139 | (*it).setChanged( true ); | ||
139 | bool changed = ((*it).custom( "KADDRESSBOOK", "X-ExternalID" ) == "changed"); | 140 | bool changed = ((*it).custom( "KADDRESSBOOK", "X-ExternalID" ) == "changed"); |
140 | (*it).removeCustom( "KADDRESSBOOK", "X-ExternalID" ); | 141 | (*it).removeCustom( "KADDRESSBOOK", "X-ExternalID" ); |
141 | //qDebug("ext %s ", (*it).custom( "KADDRESSBOOK", "X-ExternalID" ).latin1()); | 142 | //qDebug("ext %s ", (*it).custom( "KADDRESSBOOK", "X-ExternalID" ).latin1()); |
142 | if ( changed ) { | 143 | if ( changed ) { |
143 | //qDebug("changed Addressee found! "); | 144 | //qDebug("changed Addressee found! "); |
144 | KABC::Addressee std = standardAddressBook->findByUid( (*it).uid() ); | 145 | KABC::Addressee std = standardAddressBook->findByUid( (*it).uid() ); |
145 | if ( ! std.isEmpty() ) | 146 | if ( ! std.isEmpty() ) |
146 | (*it).setResource(std.resource()); | 147 | (*it).setResource(std.resource()); |
@@ -181,13 +182,14 @@ int main( int argc, char *argv[] ) | |||
181 | qDebug("************************************* "); | 182 | qDebug("************************************* "); |
182 | qDebug("*************kdeABdump*************** "); | 183 | qDebug("*************kdeABdump*************** "); |
183 | qDebug("************************************* "); | 184 | qDebug("************************************* "); |
184 | qDebug("Addressbook entries\nchanged %d\ndeleted %d\nadded %d\nfrom file %s", changedC,deleted, added, fileName.latin1()); | 185 | qDebug("Addressbook entries\nchanged %d\ndeleted %d\nadded %d\nfrom file %s", changedC,deleted, added, fileName.latin1()); |
185 | } else | 186 | } else |
186 | qDebug("error open file "); | 187 | qDebug("error open file "); |
187 | } | 188 | } |
188 | 189 | ||
189 | KABC::StdAddressBook::close(); | 190 | delete standardAddressBook; |
190 | 191 | //KABC::StdAddressBook::close(); | |
192 | //StdAddressBook::mSelf = 0; | ||
191 | qDebug("ente "); | 193 | qDebug("ente "); |
192 | return 0; | 194 | return 0; |
193 | } | 195 | } |