From 80e9fd1b08a3a7173ecf443b2830df4ca6e83ce6 Mon Sep 17 00:00:00 2001 From: tille Date: Thu, 15 May 2003 13:55:07 +0000 Subject: owait and settings for search group: - hide completed todos - show only later events - do not display hits in datebook dated --- (limited to 'core/pim/osearch/applnksearch.cpp') 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 @@ -41,23 +41,22 @@ void AppLnkSearch::load() int AppLnkSearch::search() { - int count = 0; QList appList = _apps->children(); for ( AppLnk *app = appList.first(); app != 0; app = appList.next() ){ if ( (_search.match( app->name() ) != -1) || (_search.match(app->comment()) != -1) || (_search.match(app->exec()) != -1) ) { - count++; insertItem( app ); } qApp->processEvents( 100 ); } - return count; + return _resultCount; } void AppLnkSearch::insertItem( void *rec ) { new AppLnkItem( this, (AppLnk*)rec ); + _resultCount++; } void AppLnkSearch::setSearch(QRegExp re) -- cgit v0.9.0.2