summaryrefslogtreecommitdiff
path: root/core/pim/osearch/datebooksearch.cpp
authortille <tille>2003-05-08 12:16:38 (UTC)
committer tille <tille>2003-05-08 12:16:38 (UTC)
commit763d7d7da84682fb87a631a997e93c08f5abde61 (patch) (side-by-side diff)
tree9cfeb731b793e3634fa751a6b6ffce63609f24a2 /core/pim/osearch/datebooksearch.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/datebooksearch.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/osearch/datebooksearch.cpp16
1 files changed, 10 insertions, 6 deletions
diff --git a/core/pim/osearch/datebooksearch.cpp b/core/pim/osearch/datebooksearch.cpp
index 85c55c2..e60a3b1 100644
--- a/core/pim/osearch/datebooksearch.cpp
+++ b/core/pim/osearch/datebooksearch.cpp
@@ -37,23 +37,27 @@ void DatebookSearch::expand()
_dates = new ODateBookAccess();
_dates->load();
}
-
+#define LIPBOPIE_SEARCH
+#ifdef LIPBOPIE_SEARCH
+ ORecordList<OEvent> results = _dates->matchRegexp(_search);
+ for (uint i = 0; i < results.count(); i++) {
+ new EventItem( this, new OEvent( results[i] ));
+ }
+#else
ORecordList<OEvent> list = _dates->allRecords();
QArray<int> m_currentQuery( list.count() );
for( uint i=0; i<list.count(); i++ ){
-
+ //qDebug("datebook: %s",list[i].description().latin1() );
if (
( list[i].description().contains( _search ) ) ||
( list[i].note().contains( _search ) ) ||
( list[i].location().contains( _search ) )
-// ( _search.find( list[i].description(), 0 ) > 0 ) ||
-// ( _search.find( list[i].note(), 0 ) > 0 ) ||
-// ( _search.find( list[i].location(), 0 ) > 0 )
){
+ //qDebug("FOUND");
new EventItem( this, new OEvent( list[i] ) );
-// new OListViewItem( this, list[i].description() );
}
}
+#endif
}