summaryrefslogtreecommitdiff
path: root/core/pim/osearch/applnksearch.h
Side-by-side diff
Diffstat (limited to 'core/pim/osearch/applnksearch.h') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/osearch/applnksearch.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/pim/osearch/applnksearch.h b/core/pim/osearch/applnksearch.h
index 6bb7486..853064d 100644
--- a/core/pim/osearch/applnksearch.h
+++ b/core/pim/osearch/applnksearch.h
@@ -7,32 +7,34 @@
//
// Author: Patrick S. Vogt <tille@handhelds.org>, (C) 2003
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef APPLNKSEARCH_H
#define APPLNKSEARCH_H
#include "searchgroup.h"
class AppLnkSet;
+class AppLnk;
/**
@author Patrick S. Vogt
*/
class AppLnkSearch : public SearchGroup
{
public:
AppLnkSearch(QListView* parent, QString name);
-
~AppLnkSearch();
virtual void setSearch(QRegExp);
+
+protected:
virtual void load();
virtual int search();
virtual void insertItem( void* );
-
+ virtual bool searchFile(AppLnk*) { return false; };
AppLnkSet *_apps;
};
#endif