author | zautrix <zautrix> | 2004-09-09 09:06:27 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-09-09 09:06:27 (UTC) |
commit | 578bb7c0193afcb84bb08a65f17f6abc0375676e (patch) (unidiff) | |
tree | 322ffa4dd6520f17a2a1a3505c2d2fa71170bdda | |
parent | 83570b43ee0d53737007031161c2694824351089 (diff) | |
download | kdepimpi-578bb7c0193afcb84bb08a65f17f6abc0375676e.zip kdepimpi-578bb7c0193afcb84bb08a65f17f6abc0375676e.tar.gz kdepimpi-578bb7c0193afcb84bb08a65f17f6abc0375676e.tar.bz2 |
fix of typo in desktop version
-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 | |||
@@ -138,25 +138,25 @@ void AddresseeDialog::loadAddressBook() | |||
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 ); |