diff options
author | albert-github <albert.tests@gmail.com> | 2019-07-11 13:36:33 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2019-07-11 13:36:33 (GMT) |
commit | 5edf9fe8ce764171c42c7d2ce31fbd95f2a43aff (patch) | |
tree | 5da772caf6c8f1e7736abfff396a865ad646d53c /src | |
parent | 34c9bac4624c5b94172af4a9d9168a44482fe552 (diff) | |
download | Doxygen-5edf9fe8ce764171c42c7d2ce31fbd95f2a43aff.zip Doxygen-5edf9fe8ce764171c42c7d2ce31fbd95f2a43aff.tar.gz Doxygen-5edf9fe8ce764171c42c7d2ce31fbd95f2a43aff.tar.bz2 |
issue #7109 Doxyapp can't use "[source_file | source_dir]" parameter
- initialization has to be done in an earlier stage (and only once)
- not only the INPUT tag was involved, none of the tags were set.
Diffstat (limited to 'src')
-rwxr-xr-x | src/configgen.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/configgen.py b/src/configgen.py index ca2a5d1..dbba264 100755 --- a/src/configgen.py +++ b/src/configgen.py @@ -717,6 +717,10 @@ def main(): print("") print("void ConfigValues::init()") print("{") + print(" static bool first = TRUE;") + print(" if (!first) return;") + print(" first = FALSE;") + print("") for n in elem.childNodes: if n.nodeType == Node.ELEMENT_NODE: if (n.nodeName == "group"): |