summaryrefslogtreecommitdiffstats
path: root/src/searchindex.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2005-10-04 17:59:31 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2005-10-04 17:59:31 (GMT)
commitc1cf420f89fe57c162372b66bca70ff2e055f48f (patch)
treec777493c5b4e995749975a8c04c2e5990035a641 /src/searchindex.cpp
parentb3063065e56a63056b094b58a883856267e32db3 (diff)
downloadDoxygen-c1cf420f89fe57c162372b66bca70ff2e055f48f.zip
Doxygen-c1cf420f89fe57c162372b66bca70ff2e055f48f.tar.gz
Doxygen-c1cf420f89fe57c162372b66bca70ff2e055f48f.tar.bz2
Release-1.4.5
Diffstat (limited to 'src/searchindex.cpp')
-rw-r--r--src/searchindex.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/searchindex.cpp b/src/searchindex.cpp
index 02671e6..98f2109 100644
--- a/src/searchindex.cpp
+++ b/src/searchindex.cpp
@@ -105,8 +105,8 @@ void SearchIndex::addWord(const char *word,bool hiPriority)
//printf("SearchIndex::addWord(%s,%d)\n",word,hiPriority);
//QString wStr=QString(word).lower();
QString wStr(word);
- wStr=wStr.lower();
if (wStr.isEmpty()) return;
+ wStr=wStr.lower();
IndexWord *w = m_words[wStr];
if (w==0)
{