summaryrefslogtreecommitdiffstats
path: root/src/tagreader.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2012-11-18 21:43:28 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2012-11-18 21:43:28 (GMT)
commitfee4053bd3dd075a2dd2cba4da8166ec5307eadd (patch)
tree94365b932426de715b3a479094b7056e0c4f878b /src/tagreader.cpp
parentceb4115c7b941039411e1793e01239610ff112a2 (diff)
downloadDoxygen-fee4053bd3dd075a2dd2cba4da8166ec5307eadd.zip
Doxygen-fee4053bd3dd075a2dd2cba4da8166ec5307eadd.tar.gz
Doxygen-fee4053bd3dd075a2dd2cba4da8166ec5307eadd.tar.bz2
Release-1.8.2-20121118
Diffstat (limited to 'src/tagreader.cpp')
-rw-r--r--src/tagreader.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/tagreader.cpp b/src/tagreader.cpp
index 8cfdb7b..553d195 100644
--- a/src/tagreader.cpp
+++ b/src/tagreader.cpp
@@ -36,7 +36,9 @@
#include "message.h"
#include "defargs.h"
#include "arguments.h"
-//#include "reflist.h"
+#include "filedef.h"
+#include "filename.h"
+#include "section.h"
/** Information about an linkable anchor */
class TagAnchorInfo
@@ -1035,13 +1037,13 @@ void TagFileParser::addDocAnchors(Entry *e,const TagAnchorInfoList &l)
TagAnchorInfo *ta;
for (tli.toFirst();(ta=tli.current());++tli)
{
- if (Doxygen::sectionDict.find(ta->label)==0)
+ if (Doxygen::sectionDict->find(ta->label)==0)
{
//printf("New sectionInfo file=%s anchor=%s\n",
// ta->fileName.data(),ta->label.data());
SectionInfo *si=new SectionInfo(ta->fileName,ta->label,ta->label,
SectionInfo::Anchor,0,m_tagName);
- Doxygen::sectionDict.append(ta->label,si);
+ Doxygen::sectionDict->append(ta->label,si);
e->anchors->append(si);
}
else