summaryrefslogtreecommitdiff
path: root/core/pim/osearch/todosearch.cpp
Unidiff
Diffstat (limited to 'core/pim/osearch/todosearch.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/osearch/todosearch.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/pim/osearch/todosearch.cpp b/core/pim/osearch/todosearch.cpp
index 82fae8d..9a22ee1 100644
--- a/core/pim/osearch/todosearch.cpp
+++ b/core/pim/osearch/todosearch.cpp
@@ -33,31 +33,33 @@ TodoSearch::~TodoSearch()
33 33
34 34
35void TodoSearch::expand() 35void TodoSearch::expand()
36{ 36{
37 SearchGroup::expand(); 37 SearchGroup::expand();
38 if (_search.isEmpty()) return; 38 if (_search.isEmpty()) return;
39 39
40 if (!_todos){ 40 if (!_todos){
41 _todos = new OTodoAccess(); 41 _todos = new OTodoAccess();
42 _todos->load(); 42 _todos->load();
43 } 43 }
44 44
45#ifdef LIPBOPIE_SEARCH
45 ORecordList<OTodo> results = _todos->matchRegexp(_search); 46 ORecordList<OTodo> results = _todos->matchRegexp(_search);
46 for (uint i = 0; i < results.count(); i++) { 47 for (uint i = 0; i < results.count(); i++) {
47 new TodoItem( this, new OTodo( results[i] )); 48 new TodoItem( this, new OTodo( results[i] ));
48 } 49 }
49/* 50#else
50 ORecordList<OTodo> list = _todos->allRecords(); 51 ORecordList<OTodo> list = _todos->allRecords();
51 QArray<int> m_currentQuery( list.count() ); 52 QArray<int> m_currentQuery( list.count() );
52 for( uint i=0; i<list.count(); i++ ){ 53 for( uint i=0; i<list.count(); i++ ){
53 // qDebug("todo: %s",list[i].summary().latin1() ); 54 // qDebug("todo: %s",list[i].summary().latin1() );
54 if ( list[i].match( _search ) ){ 55 if ( list[i].match( _search ) ){
55 // qDebug("FOUND"); 56 // qDebug("FOUND");
56 new TodoItem( this, new OTodo( list[i] ) ); 57 new TodoItem( this, new OTodo( list[i] ) );
57 } 58 }
58 59
59 }*/ 60 }
61#endif
60 62
61} 63}
62 64
63 65