summaryrefslogtreecommitdiffabout
authorzautrix <zautrix>2004-09-09 09:06:27 (UTC)
committer zautrix <zautrix>2004-09-09 09:06:27 (UTC)
commit578bb7c0193afcb84bb08a65f17f6abc0375676e (patch) (unidiff)
tree322ffa4dd6520f17a2a1a3505c2d2fa71170bdda
parent83570b43ee0d53737007031161c2694824351089 (diff)
downloadkdepimpi-578bb7c0193afcb84bb08a65f17f6abc0375676e.zip
kdepimpi-578bb7c0193afcb84bb08a65f17f6abc0375676e.tar.gz
kdepimpi-578bb7c0193afcb84bb08a65f17f6abc0375676e.tar.bz2
fix of typo in desktop version
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--kabc/addresseedialog.cpp2
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
@@ -144,13 +144,13 @@ void AddresseeDialog::loadAddressBook()
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}