summaryrefslogtreecommitdiffstats
path: root/src/searchindex.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/searchindex.h')
-rw-r--r--src/searchindex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/searchindex.h b/src/searchindex.h
index cd961a4..a2d8690 100644
--- a/src/searchindex.h
+++ b/src/searchindex.h
@@ -44,7 +44,7 @@ class IndexWord
{
public:
IndexWord(const char *word);
- void addUrlIndex(int);
+ void addUrlIndex(int,bool);
const QIntDict<URLInfo> &urls() const { return m_urls; }
QCString word() const { return m_word; }
@@ -58,7 +58,7 @@ class SearchIndex
public:
SearchIndex();
void setCurrentDoc(const char *name,const char *baseName,const char *anchor=0);
- void addWord(const char *word);
+ void addWord(const char *word,bool hiPriority);
void write(const char *file);
private:
QDict<IndexWord> m_words;