summaryrefslogtreecommitdiffstats
path: root/src/xmlgen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-01-08 08:35:58 (GMT)
committerGitHub <noreply@github.com>2021-01-08 08:35:58 (GMT)
commit35afa6fc9f125240f283b3b757a15a9fea3a4b14 (patch)
treef2b008538a559771e96fdc16c3f9a06a5479313d /src/xmlgen.cpp
parenta811fc0a310f947c273c48208bf0d4741ef78df0 (diff)
parent8e0f3b40fc36f38cf3b5d78d859b1e8678de0069 (diff)
downloadDoxygen-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.cpp3
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;