diff options
author | Nithin Kumar Padavu <nithinrao@gmail.com> | 2018-04-07 15:10:06 +0000 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-04-08 16:57:19 +0200 |
commit | 4f5928ea8022d879764cc882f01a1b642645d66f (patch) | |
tree | a93800a04c9f927740069e5f9ea69acfa58968e2 /include | |
parent | 08297b3022180ee169a44230edc43d020d97cf42 (diff) |
tdf#112384 sw: Allow New line as a label followed by chapter numbering
reference-language also added to token list
Change-Id: I32713508d3611dc2bce10b2c5abb1e1a4167bdaf
Reviewed-on: https://gerrit.libreoffice.org/52561
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/editeng/numitem.hxx | 3 | ||||
-rw-r--r-- | include/xmloff/xmltoken.hxx | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/include/editeng/numitem.hxx b/include/editeng/numitem.hxx index f6fb25eb8476..520e12cfbdc5 100644 --- a/include/editeng/numitem.hxx +++ b/include/editeng/numitem.hxx @@ -95,7 +95,8 @@ public: { LISTTAB, SPACE, - NOTHING + NOTHING, + NEWLINE }; private: diff --git a/include/xmloff/xmltoken.hxx b/include/xmloff/xmltoken.hxx index bb76cbf48678..b741dc43ac9b 100644 --- a/include/xmloff/xmltoken.hxx +++ b/include/xmloff/xmltoken.hxx @@ -3312,6 +3312,8 @@ namespace xmloff { namespace token { // tdf#115319 XML_REFERENCE_LANGUAGE, + XML_NEWLINE, + XML_TOKEN_END }; |