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 /kabc | |
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 | |||
@@ -147,7 +147,7 @@ void AddresseeDialog::loadAddressBook() | |||
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 |