-rw-r--r-- | kabc/addresseedialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kabc/addresseedialog.cpp b/kabc/addresseedialog.cpp index cb6c12f..eb9bfc9 100644 --- a/kabc/addresseedialog.cpp +++ b/kabc/addresseedialog.cpp | |||
@@ -134,33 +134,33 @@ void AddresseeDialog::loadAddressBook() | |||
134 | } | 134 | } |
135 | return; | 135 | return; |
136 | } | 136 | } |
137 | //mAddresseeEdit->completionObject()->clear(); | 137 | //mAddresseeEdit->completionObject()->clear(); |
138 | QRegExp re; | 138 | QRegExp re; |
139 | re.setWildcard(true); // most people understand these better. | 139 | re.setWildcard(true); // most people understand these better. |
140 | re.setCaseSensitive(false); | 140 | re.setCaseSensitive(false); |
141 | re.setPattern( "*"+ mAddresseeEdit->text() + "*"); | 141 | re.setPattern( "*"+ mAddresseeEdit->text() + "*"); |
142 | 142 | ||
143 | AddressBook::Iterator it; | 143 | AddressBook::Iterator it; |
144 | for( it = mAddressBook->begin(); it != mAddressBook->end(); ++it ) { | 144 | for( it = mAddressBook->begin(); it != mAddressBook->end(); ++it ) { |
145 | QString name = (*it).familyName()+", "+ (*it).givenName(); | 145 | QString name = (*it).familyName()+", "+ (*it).givenName(); |
146 | if ( name.length() == 2 ) | 146 | if ( name.length() == 2 ) |
147 | name = (*it).realName(); | 147 | name = (*it).realName(); |
148 | name += (*it).preferredEmail(); | 148 | name += (*it).preferredEmail(); |
149 | #if QT_VERSION >= 300 | 149 | #if QT_VERSION >= 300 |
150 | if (re.search(name)) != -1) | 150 | if (re.search(name) != -1) |
151 | #else | 151 | #else |
152 | if (re.match(name) != -1) | 152 | if (re.match(name) != -1) |
153 | #endif | 153 | #endif |
154 | AddresseeItem *item = new AddresseeItem( mAddresseeList, (*it) ); | 154 | AddresseeItem *item = new AddresseeItem( mAddresseeList, (*it) ); |
155 | } | 155 | } |
156 | } | 156 | } |
157 | 157 | ||
158 | void AddresseeDialog::addCompletionItem( const QString &str, QListViewItem *item ) | 158 | void AddresseeDialog::addCompletionItem( const QString &str, QListViewItem *item ) |
159 | { | 159 | { |
160 | if ( str.isEmpty() ) return; | 160 | if ( str.isEmpty() ) return; |
161 | 161 | ||
162 | mItemDict.insert( str, item ); | 162 | mItemDict.insert( str, item ); |
163 | //mAddresseeEdit->completionObject()->addItem( str ); | 163 | //mAddresseeEdit->completionObject()->addItem( str ); |
164 | } | 164 | } |
165 | 165 | ||
166 | void AddresseeDialog::selectItem( const QString &str ) | 166 | void AddresseeDialog::selectItem( const QString &str ) |