summaryrefslogtreecommitdiffstats
path: root/src/doxygen.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2014-02-05 12:45:42 (GMT)
committeralbert-github <albert.tests@gmail.com>2014-02-05 12:45:42 (GMT)
commitcfd8c2415e7d0744a00bf1990f26aab538940f20 (patch)
treeb346cfeaa18fe906fdb0635fe9468a3a982bc7cd /src/doxygen.cpp
parent317c26a66f142e8f2322c6b0556dba80d679e6b9 (diff)
downloadDoxygen-cfd8c2415e7d0744a00bf1990f26aab538940f20.zip
Doxygen-cfd8c2415e7d0744a00bf1990f26aab538940f20.tar.gz
Doxygen-cfd8c2415e7d0744a00bf1990f26aab538940f20.tar.bz2
Better message in case doxygen -u is used
In case of obsolete or not configured entries in the Doxyfile and the option -u is used a message like: Warning: Tag `XML_DTD' at line 1821 of file Doxyfile has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" appears, but the item is removed from the Doxyfile. This patch updates the message (and improves layout) to: Warning: Tag `XML_DTD' at line 1821 of file `Doxyfile' has become obsolete. This tag has been removed.
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r--src/doxygen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index 1eac506..3f05396 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -10349,7 +10349,7 @@ void readConfiguration(int argc, char **argv)
}
- if (!Config::instance()->parse(configName))
+ if (!Config::instance()->parse(configName,updateConfig))
{
err("could not open or read configuration file %s!\n",configName);
cleanUpDoxygen();