diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-08-12 12:53:19 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-08-12 12:53:19 (GMT) |
commit | bb18b811e8f1a4a939eadf28d12bc5f99dd74b82 (patch) | |
tree | 96c3b47bbfb0ee3d28e46421e1317253ba052f01 /src/docparser.cpp | |
parent | 6e8975abdb6b52477a5788bca969e13e467814dd (diff) | |
download | Doxygen-bb18b811e8f1a4a939eadf28d12bc5f99dd74b82.zip Doxygen-bb18b811e8f1a4a939eadf28d12bc5f99dd74b82.tar.gz Doxygen-bb18b811e8f1a4a939eadf28d12bc5f99dd74b82.tar.bz2 |
Release-1.3.8-20040812
Diffstat (limited to 'src/docparser.cpp')
-rw-r--r-- | src/docparser.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/docparser.cpp b/src/docparser.cpp index 2f6a55f..6043a2d 100644 --- a/src/docparser.cpp +++ b/src/docparser.cpp @@ -441,7 +441,7 @@ static bool findDocsForMemberOrCompound(const char *commandName, //printf("findDocsForMemberOrCompound(%s)\n",commandName); *pDoc=""; *pDef=0; - QString cmdArg=commandName; + QString cmdArg=substitute(commandName,"#","::"); int l=cmdArg.length(); if (l==0) return FALSE; @@ -1236,7 +1236,7 @@ DocWord::DocWord(DocNode *parent,const QString &word) : //printf("new word %s url=%s\n",word.data(),g_searchUrl.data()); if (!g_searchUrl.isEmpty()) { - Doxygen::searchIndex->addWord(word.lower()); + Doxygen::searchIndex->addWord(word); } } @@ -1251,7 +1251,7 @@ DocLinkedWord::DocLinkedWord(DocNode *parent,const QString &word, //printf("new word %s url=%s\n",word.data(),g_searchUrl.data()); if (!g_searchUrl.isEmpty()) { - Doxygen::searchIndex->addWord(word.lower()); + Doxygen::searchIndex->addWord(word); } } @@ -1517,6 +1517,8 @@ bool DocXRefItem::parse() m_file = refList->listName(); m_anchor = item->listAnchor; m_title = refList->sectionTitle(); + //printf("DocXRefItem: file=%s anchor=%s title=%s\n", + // m_file.data(),m_anchor.data(),m_title.data()); if (!item->text.isEmpty()) { |