summaryrefslogtreecommitdiffstats
path: root/src/searchindex.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2004-08-12 12:53:19 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2004-08-12 12:53:19 (GMT)
commitedeb82c1e0cebe5437fb637c9d239a8cecfca0cb (patch)
tree96c3b47bbfb0ee3d28e46421e1317253ba052f01 /src/searchindex.cpp
parentf4bab88acea24b261d85d25359c73cbb49869c5f (diff)
downloadDoxygen-edeb82c1e0cebe5437fb637c9d239a8cecfca0cb.zip
Doxygen-edeb82c1e0cebe5437fb637c9d239a8cecfca0cb.tar.gz
Doxygen-edeb82c1e0cebe5437fb637c9d239a8cecfca0cb.tar.bz2
Release-1.3.8-20040812
Diffstat (limited to 'src/searchindex.cpp')
-rw-r--r--src/searchindex.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/searchindex.cpp b/src/searchindex.cpp
index cf049aa..b85d87e 100644
--- a/src/searchindex.cpp
+++ b/src/searchindex.cpp
@@ -81,12 +81,14 @@ static int charsToIndex(const char *word)
void SearchIndex::addWord(const char *word)
{
- IndexWord *w = m_words[word];
+ QString wStr=QString(word).lower();
+ if (wStr.isEmpty()) return;
+ IndexWord *w = m_words[wStr];
if (w==0)
{
- int idx=charsToIndex(word);
+ int idx=charsToIndex(wStr);
if (idx<0) return;
- w = new IndexWord(word);
+ w = new IndexWord(wStr);
//fprintf(stderr,"addWord(%s) at index %d\n",word,idx);
m_index[idx]->append(w);
m_words.insert(word,w);