diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2004-08-12 12:53:19 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2004-08-12 12:53:19 (GMT) |
commit | edeb82c1e0cebe5437fb637c9d239a8cecfca0cb (patch) | |
tree | 96c3b47bbfb0ee3d28e46421e1317253ba052f01 /src/docparser.cpp | |
parent | f4bab88acea24b261d85d25359c73cbb49869c5f (diff) | |
download | Doxygen-edeb82c1e0cebe5437fb637c9d239a8cecfca0cb.zip Doxygen-edeb82c1e0cebe5437fb637c9d239a8cecfca0cb.tar.gz Doxygen-edeb82c1e0cebe5437fb637c9d239a8cecfca0cb.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()) { |