diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2003-07-08 20:06:16 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2003-07-08 20:06:16 (GMT) |
commit | 5444ff60bbf81c46841827e66e72f3148edde9ff (patch) | |
tree | 0ff0fae4a5be0021848d96eb18ee8505ff6b9b5d /src/docparser.cpp | |
parent | 17c14fb5230cfc532577c32df1d10223534392d8 (diff) | |
download | Doxygen-5444ff60bbf81c46841827e66e72f3148edde9ff.zip Doxygen-5444ff60bbf81c46841827e66e72f3148edde9ff.tar.gz Doxygen-5444ff60bbf81c46841827e66e72f3148edde9ff.tar.bz2 |
Release-1.3.2-20030708
Diffstat (limited to 'src/docparser.cpp')
-rw-r--r-- | src/docparser.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/docparser.cpp b/src/docparser.cpp index abf930a..56f1f55 100644 --- a/src/docparser.cpp +++ b/src/docparser.cpp @@ -1144,8 +1144,8 @@ static void readTextFileByName(const QString &file,QString &text) } else { - warn_doc_error(g_fileName,doctokenizerYYlineno,"Warning: included file %s is not found" - "Check you EXAMPLE_PATH",file.data()); + warn_doc_error(g_fileName,doctokenizerYYlineno,"Warning: included file %s is not found. " + "Check your EXAMPLE_PATH",file.data()); } } @@ -1167,10 +1167,12 @@ DocAnchor::DocAnchor(DocNode *parent,const QString &id,bool newAnchor) SectionInfo *sec = Doxygen::sectionDict[id]; if (sec) { + //printf("Found anchor %s\n",id.data()); m_file = sec->fileName; m_anchor = sec->label; if (g_sectionDict && g_sectionDict->find(id)==0) { + //printf("Inserting in dictionary!\n"); g_sectionDict->insert(id,sec); } } @@ -4672,8 +4674,7 @@ void DocRoot::parse() DocNode *validatingParseDoc(const char *fileName,int startLine, const char *context,MemberDef *md, const char *input,bool isExample, - const char *exampleName, - SectionDict *sections) + const char *exampleName) { //printf("========== validating %s at line %d\n",fileName,startLine); @@ -4696,7 +4697,7 @@ DocNode *validatingParseDoc(const char *fileName,int startLine, g_hasParamCommand = FALSE; g_paramsFound.setAutoDelete(FALSE); g_paramsFound.clear(); - g_sectionDict = sections; + g_sectionDict = 0; //sections; doctokenizerYYlineno=startLine; doctokenizerYYinit(input,g_fileName); |