summaryrefslogtreecommitdiffstats
path: root/src/searchindex.cpp
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2012-04-08 14:16:03 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2012-04-08 14:16:03 (GMT)
commitc02e23403ebac29078e51df54f796ee71c0e8c3e (patch)
treeffd092e761289b417363c0562ceb9b93b88f19a4 /src/searchindex.cpp
parent4126eaa26d354ddd0e9aad8183f140f8f911442e (diff)
downloadDoxygen-c02e23403ebac29078e51df54f796ee71c0e8c3e.zip
Doxygen-c02e23403ebac29078e51df54f796ee71c0e8c3e.tar.gz
Doxygen-c02e23403ebac29078e51df54f796ee71c0e8c3e.tar.bz2
Release-1.8.0-20120408
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 6757711..532b692 100644
--- a/src/searchindex.cpp
+++ b/src/searchindex.cpp
@@ -106,7 +106,7 @@ void SearchIndex::addWord(const char *word,bool hiPriority,bool recurse)
{
static QRegExp nextPart("[_a-z:][A-Z]");
//printf("SearchIndex::addWord(%s,%d)\n",word,hiPriority);
- QString wStr(word);
+ QCString wStr(word);
if (wStr.isEmpty()) return;
wStr=wStr.lower();
IndexWord *w = m_words[wStr];