diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-06-16 20:28:29 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-06-17 09:06:58 +0200 |
commit | c2d290fa917fec68050a930c6297e794b5785244 (patch) | |
tree | 5bb4fae4de02e5fb4eafea27356df476b6e29cc1 /xmloff/source | |
parent | 9e2d4e9b43cb835c0fb2783374a1f2666807984c (diff) |
SAL_WARN->SAL_INFO in SdXMLStylesContext::CreateStyleChildContext
This is not an error - this method handles elements if it knows about
them, and otherwise leaves the elements for other code to handle
Change-Id: I531a2d9aff84ef4a2762923737a6b827e88cd920
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153191
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmloff/source')
-rw-r--r-- | xmloff/source/draw/ximpstyl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/draw/ximpstyl.cxx b/xmloff/source/draw/ximpstyl.cxx index 196aeb136a1e..0d98bce54151 100644 --- a/xmloff/source/draw/ximpstyl.cxx +++ b/xmloff/source/draw/ximpstyl.cxx @@ -905,7 +905,7 @@ SvXMLStyleContext* SdXMLStylesContext::CreateStyleChildContext( case XML_ELEMENT(STYLE, XML_STYLE): break; // ignore default: - XMLOFF_WARN_UNKNOWN_ELEMENT("xmloff", nElement); + XMLOFF_INFO_UNKNOWN_ELEMENT("xmloff", nElement); } // call base class |