diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2010-11-18 21:50:39 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2010-11-18 21:50:39 (GMT) |
commit | dd7602fdd31d8f3e0f88be553da084a1e3fdec45 (patch) | |
tree | a6d2454b4e6d53003fa829bb7134fe373461ed97 /src/filedef.cpp | |
parent | be602ee76006d9b8b0f6e5e75114f2ce34f7773e (diff) | |
download | Doxygen-dd7602fdd31d8f3e0f88be553da084a1e3fdec45.zip Doxygen-dd7602fdd31d8f3e0f88be553da084a1e3fdec45.tar.gz Doxygen-dd7602fdd31d8f3e0f88be553da084a1e3fdec45.tar.bz2 |
Release-1.7.2-20101118
Diffstat (limited to 'src/filedef.cpp')
-rw-r--r-- | src/filedef.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/filedef.cpp b/src/filedef.cpp index 786fcf1..1cc840b 100644 --- a/src/filedef.cpp +++ b/src/filedef.cpp @@ -61,7 +61,7 @@ class DevNullCodeDocInterface : public CodeOutputInterface //--------------------------------------------------------------------------- /*! create a new file definition, where \a p is the file path, - \a nm the file name, and \a ref is an HTML anchor name if the + \a nm the file name, and \a lref is an HTML anchor name if the file was read from a tag file or 0 otherwise */ FileDef::FileDef(const char *p,const char *nm, @@ -431,6 +431,7 @@ void FileDef::writeMemberGroups(OutputList &ol) /* write user defined member groups */ if (memberGroupSDict) { + memberGroupSDict->sort(); MemberGroupSDict::Iterator mgli(*memberGroupSDict); MemberGroup *mg; for (;(mg=mgli.current());++mgli) @@ -789,7 +790,7 @@ void FileDef::writeSource(OutputList &ol) pIntf->resetCodeParserState(); ol.startCodeFragment(); pIntf->parseCode(ol,0, - fileToString(absFilePath(),filterSourceFiles), + fileToString(absFilePath(),filterSourceFiles,TRUE), FALSE,0,this ); ol.endCodeFragment(); @@ -806,7 +807,7 @@ void FileDef::parseSource() pIntf->resetCodeParserState(); pIntf->parseCode( devNullIntf,0, - fileToString(absFilePath(),filterSourceFiles), + fileToString(absFilePath(),filterSourceFiles,TRUE), FALSE,0,this ); } |