diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2021-01-08 08:35:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-08 08:35:58 (GMT) |
commit | 35afa6fc9f125240f283b3b757a15a9fea3a4b14 (patch) | |
tree | f2b008538a559771e96fdc16c3f9a06a5479313d /src/xmlgen.cpp | |
parent | a811fc0a310f947c273c48208bf0d4741ef78df0 (diff) | |
parent | 8e0f3b40fc36f38cf3b5d78d859b1e8678de0069 (diff) | |
download | Doxygen-35afa6fc9f125240f283b3b757a15a9fea3a4b14.zip Doxygen-35afa6fc9f125240f283b3b757a15a9fea3a4b14.tar.gz Doxygen-35afa6fc9f125240f283b3b757a15a9fea3a4b14.tar.bz2 |
Merge pull request #8313 from ModuleWorks/missing_xml_info
Missing info in XML: location, width, valign, alt
Diffstat (limited to 'src/xmlgen.cpp')
-rw-r--r-- | src/xmlgen.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/xmlgen.cpp b/src/xmlgen.cpp index 5a7eabd..70fcd70 100644 --- a/src/xmlgen.cpp +++ b/src/xmlgen.cpp @@ -1719,6 +1719,7 @@ static void generateXMLForPage(PageDef *pd,FTextStream &ti,bool isExample) // + name // + title // + documentation + // + location const char *kindName = isExample ? "example" : "page"; @@ -1844,6 +1845,8 @@ static void generateXMLForPage(PageDef *pd,FTextStream &ti,bool isExample) } t << " </detaileddescription>" << endl; + t << " <location file=\"" << convertToXML(stripFromPath(pd->getDefFileName())) << "\"/>" << endl; + t << " </compounddef>" << endl; t << "</doxygen>" << endl; |