Skip to content

Commit 5d2ecb7

Browse files
committed
Fix typo
1 parent 56a616b commit 5d2ecb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/searchindex.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ void SearchIndexExternal::addWord(const QCString &word,bool hiPriority)
493493
{
494494
std::lock_guard<std::mutex> lock(g_searchIndexMutex);
495495
if (word.isEmpty() || !isId(word[0]) || m_current==nullptr) return;
496-
QCString &tText = hiPriority ? m_current->importantText : m_current->normalText;
496+
QCString &text = hiPriority ? m_current->importantText : m_current->normalText;
497497
if (!text.isEmpty()) text+=' ';
498498
text+=word;
499499
//printf("addWord %s\n",word);

0 commit comments

Comments
 (0)