author | zautrix <zautrix> | 2004-10-26 00:05:19 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-10-26 00:05:19 (UTC) |
commit | 283cdf0b976a66c8e29ac327385472844d92f581 (patch) (unidiff) | |
tree | da0b3e6fe816db76fa2015f4df0748e32679db43 /kabc | |
parent | 8cc5f6491c0f0f1ad6568b8c6221ca8cdeac3207 (diff) | |
download | kdepimpi-283cdf0b976a66c8e29ac327385472844d92f581.zip kdepimpi-283cdf0b976a66c8e29ac327385472844d92f581.tar.gz kdepimpi-283cdf0b976a66c8e29ac327385472844d92f581.tar.bz2 |
removed last-syncAddressee- from AddresseeDialog list
-rw-r--r-- | kabc/addresseedialog.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kabc/addresseedialog.cpp b/kabc/addresseedialog.cpp index eb9bfc9..ae67968 100644 --- a/kabc/addresseedialog.cpp +++ b/kabc/addresseedialog.cpp | |||
@@ -130,6 +130,8 @@ void AddresseeDialog::loadAddressBook() | |||
130 | if ( mAddresseeEdit->text().isEmpty() ) { | 130 | if ( mAddresseeEdit->text().isEmpty() ) { |
131 | AddressBook::Iterator it; | 131 | AddressBook::Iterator it; |
132 | for( it = mAddressBook->begin(); it != mAddressBook->end(); ++it ) { | 132 | for( it = mAddressBook->begin(); it != mAddressBook->end(); ++it ) { |
133 | if ( (*it).uid().left(2) == "la" && (*it).uid().left(19) == QString("last-syncAddressee-") ) | ||
134 | continue; | ||
133 | new AddresseeItem( mAddresseeList, (*it) ); | 135 | new AddresseeItem( mAddresseeList, (*it) ); |
134 | } | 136 | } |
135 | return; | 137 | return; |
@@ -142,6 +144,8 @@ void AddresseeDialog::loadAddressBook() | |||
142 | 144 | ||
143 | AddressBook::Iterator it; | 145 | AddressBook::Iterator it; |
144 | for( it = mAddressBook->begin(); it != mAddressBook->end(); ++it ) { | 146 | for( it = mAddressBook->begin(); it != mAddressBook->end(); ++it ) { |
147 | if ( (*it).uid().left(2) == "la" && (*it).uid().left(19) == QString("last-syncAddressee-") ) | ||
148 | continue; | ||
145 | QString name = (*it).familyName()+", "+ (*it).givenName(); | 149 | QString name = (*it).familyName()+", "+ (*it).givenName(); |
146 | if ( name.length() == 2 ) | 150 | if ( name.length() == 2 ) |
147 | name = (*it).realName(); | 151 | name = (*it).realName(); |