summaryrefslogtreecommitdiffstats
path: root/src/xmlgen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-07-30 12:59:58 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2019-07-30 12:59:58 (GMT)
commit3c47ea4ff918a63eb3a3e5f67354b6975c839743 (patch)
treedccdf5b5583256944297866d990b165b5f504c82 /src/xmlgen.cpp
parent869602993d389ae85994aae17db26940cc44f0cf (diff)
parentcb1ef441b2a4d21cf67a59fe8e57613ba3552051 (diff)
downloadDoxygen-3c47ea4ff918a63eb3a3e5f67354b6975c839743.zip
Doxygen-3c47ea4ff918a63eb3a3e5f67354b6975c839743.tar.gz
Doxygen-3c47ea4ff918a63eb3a3e5f67354b6975c839743.tar.bz2
Merge branch 'feature/bug_gitversion' of https://github.com/albert-github/doxygen into albert-github-feature/bug_gitversion
Diffstat (limited to 'src/xmlgen.cpp')
-rw-r--r--src/xmlgen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xmlgen.cpp b/src/xmlgen.cpp
index b992b81..16abbf2 100644
--- a/src/xmlgen.cpp
+++ b/src/xmlgen.cpp
@@ -154,7 +154,7 @@ static void writeXMLHeader(FTextStream &t)
t << "<?xml version='1.0' encoding='UTF-8' standalone='no'?>" << endl;;
t << "<doxygen xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" ";
t << "xsi:noNamespaceSchemaLocation=\"compound.xsd\" ";
- t << "version=\"" << versionString << "\">" << endl;
+ t << "version=\"" << getVersion() << "\">" << endl;
}
static void writeCombineScript()
@@ -1981,7 +1981,7 @@ void generateXML()
t << "<?xml version='1.0' encoding='UTF-8' standalone='no'?>" << endl;;
t << "<doxygenindex xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" ";
t << "xsi:noNamespaceSchemaLocation=\"index.xsd\" ";
- t << "version=\"" << versionString << "\">" << endl;
+ t << "version=\"" << getVersion() << "\">" << endl;
{
ClassSDict::Iterator cli(*Doxygen::classSDict);