summaryrefslogtreecommitdiffstats
path: root/src/mandocvisitor.h
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2021-04-29 11:59:33 (GMT)
committeralbert-github <albert.tests@gmail.com>2021-04-29 11:59:33 (GMT)
commit7fc02d88c173a275001a2551285be8f7f979181a (patch)
tree17c267f201b165b36d68db03bc52e5ace1a68ad9 /src/mandocvisitor.h
parenta9f40a48c99af952836a3871e60ff6ca17ecdecf (diff)
downloadDoxygen-7fc02d88c173a275001a2551285be8f7f979181a.zip
Doxygen-7fc02d88c173a275001a2551285be8f7f979181a.tar.gz
Doxygen-7fc02d88c173a275001a2551285be8f7f979181a.tar.bz2
issue #8522 Javadoc: type attribute of ordered lists not preserved (in xml)
The problem was a bit deeper, it was also valid for other output formats. Implemented the `type` and `start` attribute for all relevant output types.
Diffstat (limited to 'src/mandocvisitor.h')
-rw-r--r--src/mandocvisitor.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mandocvisitor.h b/src/mandocvisitor.h
index 341f37a..332ca70 100644
--- a/src/mandocvisitor.h
+++ b/src/mandocvisitor.h
@@ -159,4 +159,13 @@ class ManDocVisitor : public DocVisitor
QCString m_langExt;
};
+struct ManListItemInfo
+{
+ int number;
+ char type;
+};
+
+const int man_maxIndentLevels = 13;
+
+extern ManListItemInfo man_listItemInfo[man_maxIndentLevels];
#endif