summaryrefslogtreecommitdiff
path: root/core/pim/osearch/applnksearch.cpp
Side-by-side diff
Diffstat (limited to 'core/pim/osearch/applnksearch.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/osearch/applnksearch.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/core/pim/osearch/applnksearch.cpp b/core/pim/osearch/applnksearch.cpp
index d5b181b..5fa36bb 100644
--- a/core/pim/osearch/applnksearch.cpp
+++ b/core/pim/osearch/applnksearch.cpp
@@ -42,5 +42,4 @@ void AppLnkSearch::load()
int AppLnkSearch::search()
{
- int count = 0;
QList<AppLnk> appList = _apps->children();
for ( AppLnk *app = appList.first(); app != 0; app = appList.next() ){
@@ -48,10 +47,9 @@ int AppLnkSearch::search()
|| (_search.match(app->comment()) != -1)
|| (_search.match(app->exec()) != -1) ) {
- count++;
insertItem( app );
}
qApp->processEvents( 100 );
}
- return count;
+ return _resultCount;
}
@@ -59,4 +57,5 @@ void AppLnkSearch::insertItem( void *rec )
{
new AppLnkItem( this, (AppLnk*)rec );
+ _resultCount++;
}