summaryrefslogtreecommitdiffstats
path: root/src/tagreader.cpp
diff options
context:
space:
mode:
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