author | zautrix <zautrix> | 2004-10-09 17:36:32 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-10-09 17:36:32 (UTC) |
commit | d68435216e1ebc5a7fed391157197994e13992b3 (patch) (side-by-side diff) | |
tree | 3cb23a2cf1ee55ab881670c2d7bb3b54d60c3b59 | |
parent | 59ed933d6c43ecb0ddd3dec53cc289ee8aa68482 (diff) | |
download | kdepimpi-d68435216e1ebc5a7fed391157197994e13992b3.zip kdepimpi-d68435216e1ebc5a7fed391157197994e13992b3.tar.gz kdepimpi-d68435216e1ebc5a7fed391157197994e13992b3.tar.bz2 |
sync fix
-rw-r--r-- | kabc/addressbook.cpp | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/kabc/addressbook.cpp b/kabc/addressbook.cpp index ff05f7e..16927e2 100644 --- a/kabc/addressbook.cpp +++ b/kabc/addressbook.cpp @@ -439,21 +439,29 @@ void AddressBook::setUntagged() Iterator ait; for ( ait = begin(); ait != end(); ++ait ) { (*ait).setTagged( false ); } } void AddressBook::removeUntagged() { Iterator ait; + bool todelete = false; + Iterator todel; for ( ait = begin(); ait != end(); ++ait ) { - if (!(*ait).tagged()) - removeAddressee( ait ); - } - + if ( todelete ) + removeAddressee( todel ); + if (!(*ait).tagged()) { + todelete = true; + todel = ait; + } else + todelete = false; + } + if ( todelete ) + removeAddressee( todel ); deleteRemovedAddressees(); } bool AddressBook::saveAB() { bool ok = true; deleteRemovedAddressees(); Iterator ait; |