summaryrefslogtreecommitdiffstats
path: root/src/searchindex.cpp
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2005-10-04 17:59:31 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2005-10-04 17:59:31 (GMT)
commit22eb9881c15ad001246cfcde1c727a2f98f472df (patch)
treec777493c5b4e995749975a8c04c2e5990035a641 /src/searchindex.cpp
parent22dc10cfbe5042f21b9d706e5e8bb41749f65786 (diff)
downloadDoxygen-22eb9881c15ad001246cfcde1c727a2f98f472df.zip
Doxygen-22eb9881c15ad001246cfcde1c727a2f98f472df.tar.gz
Doxygen-22eb9881c15ad001246cfcde1c727a2f98f472df.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)
{