author | zautrix <zautrix> | 2005-06-18 09:37:58 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-06-18 09:37:58 (UTC) |
commit | 2cbe93f970eddb6b61d3fc42ccff1a500e806723 (patch) (unidiff) | |
tree | c4a76544776f9d046e9560fb6d0eb9eb3cc050a1 | |
parent | 252c62bffc34f2c71002c71abea480807fa1455a (diff) | |
download | kdepimpi-2cbe93f970eddb6b61d3fc42ccff1a500e806723.zip kdepimpi-2cbe93f970eddb6b61d3fc42ccff1a500e806723.tar.gz kdepimpi-2cbe93f970eddb6b61d3fc42ccff1a500e806723.tar.bz2 |
fixx
-rw-r--r-- | bin/kdepim/WhatsNew.txt | 6 | ||||
-rw-r--r-- | kabc/addresseedialog.cpp | 9 |
2 files changed, 8 insertions, 7 deletions
diff --git a/bin/kdepim/WhatsNew.txt b/bin/kdepim/WhatsNew.txt index e0bd3f3..eaf4b56 100644 --- a/bin/kdepim/WhatsNew.txt +++ b/bin/kdepim/WhatsNew.txt | |||
@@ -2,8 +2,14 @@ Info about the changes in new versions of KDE-Pim/Pi | |||
2 | 2 | ||
3 | 3 | ||
4 | ********** VERSION 2.1.8 ************ | 4 | ********** VERSION 2.1.8 ************ |
5 | 5 | ||
6 | KO/Pi: | ||
7 | Added info about the completion sate of a todo in the ListView/Searchdialog. | ||
8 | If in TodoView is selected "do not show compledted todos" then completed todos are not shown in the ListView as well. | ||
9 | |||
10 | KA/Pi: | ||
11 | In the addressee selection dialog now the formatted name is shown, if not empty. | ||
6 | 12 | ||
7 | ********** VERSION 2.1.7 ************ | 13 | ********** VERSION 2.1.7 ************ |
8 | 14 | ||
9 | KO/Pi: | 15 | KO/Pi: |
diff --git a/kabc/addresseedialog.cpp b/kabc/addresseedialog.cpp index 19b52bb..e89584d 100644 --- a/kabc/addresseedialog.cpp +++ b/kabc/addresseedialog.cpp | |||
@@ -41,12 +41,9 @@ using namespace KABC; | |||
41 | AddresseeItem::AddresseeItem( QListView *parent, const Addressee &addressee ) : | 41 | AddresseeItem::AddresseeItem( QListView *parent, const Addressee &addressee ) : |
42 | QListViewItem( parent ), | 42 | QListViewItem( parent ), |
43 | mAddressee( addressee ) | 43 | mAddressee( addressee ) |
44 | { | 44 | { |
45 | QString name = addressee.familyName()+", "+ addressee.givenName(); | 45 | setText( Name,addressee.realName()); |
46 | if ( name.length() == 2 ) | ||
47 | name = addressee.organization(); | ||
48 | setText( Name,name); | ||
49 | setText( Email, addressee.preferredEmail() ); | 46 | setText( Email, addressee.preferredEmail() ); |
50 | } | 47 | } |
51 | 48 | ||
52 | QString AddresseeItem::key( int column, bool ) const | 49 | QString AddresseeItem::key( int column, bool ) const |
@@ -164,11 +161,9 @@ void AddresseeDialog::loadAddressBook() | |||
164 | AddressBook::Iterator it; | 161 | AddressBook::Iterator it; |
165 | for( it = mAddressBook->begin(); it != mAddressBook->end(); ++it ) { | 162 | for( it = mAddressBook->begin(); it != mAddressBook->end(); ++it ) { |
166 | if ( (*it).uid().left(2) == "la" && (*it).uid().left(19) == QString("last-syncAddressee-") ) | 163 | if ( (*it).uid().left(2) == "la" && (*it).uid().left(19) == QString("last-syncAddressee-") ) |
167 | continue; | 164 | continue; |
168 | QString name = (*it).familyName()+", "+ (*it).givenName(); | 165 | QString name = (*it).realName(); |
169 | if ( name.length() == 2 ) | ||
170 | name = (*it).realName(); | ||
171 | name += (*it).preferredEmail(); | 166 | name += (*it).preferredEmail(); |
172 | #if QT_VERSION >= 0x030000 | 167 | #if QT_VERSION >= 0x030000 |
173 | if (re.search(name) != -1) | 168 | if (re.search(name) != -1) |
174 | #else | 169 | #else |