summaryrefslogtreecommitdiff
path: root/core/pim/osearch/adresssearch.cpp
authortille <tille>2003-05-08 12:16:38 (UTC)
committer tille <tille>2003-05-08 12:16:38 (UTC)
commit763d7d7da84682fb87a631a997e93c08f5abde61 (patch) (unidiff)
tree9cfeb731b793e3634fa751a6b6ffce63609f24a2 /core/pim/osearch/adresssearch.cpp
parent9e08dd00a96ffb4141da9f4ce2df0b871b334691 (diff)
downloadopie-763d7d7da84682fb87a631a997e93c08f5abde61.zip
opie-763d7d7da84682fb87a631a997e93c08f5abde61.tar.gz
opie-763d7d7da84682fb87a631a997e93c08f5abde61.tar.bz2
this needs the new libopie patch...
Diffstat (limited to 'core/pim/osearch/adresssearch.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/osearch/adresssearch.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/core/pim/osearch/adresssearch.cpp b/core/pim/osearch/adresssearch.cpp
index 4b0bd9c..c5b1ae7 100644
--- a/core/pim/osearch/adresssearch.cpp
+++ b/core/pim/osearch/adresssearch.cpp
@@ -34,14 +34,10 @@ void AdressSearch::expand()
34{ 34{
35 SearchGroup::expand(); 35 SearchGroup::expand();
36 if (_search.isEmpty()) return; 36 if (_search.isEmpty()) return;
37 if (!_contacts) _contacts = new OContactAccess("osearch"); 37 if (!_contacts) _contacts = new OContactAccess("osearch");
38 ORecordList<OContact> results = _contacts->matchRegexp(_search); 38 ORecordList<OContact> results = _contacts->matchRegexp(_search);
39 for (uint i = 0; i < results.count(); i++) { 39 for (uint i = 0; i < results.count(); i++) {
40 // qDebug("i=%i",i);
41 // OContact rec = results[i];
42 // qDebug("fullname %s",rec.fullName().latin1());
43 //(( new OListViewItem( this, rec.fullName() );
44 new ContactItem( this, new OContact( results[i] )); 40 new ContactItem( this, new OContact( results[i] ));
45 } 41 }
46} 42}
47 43