summaryrefslogtreecommitdiff
path: root/include/xmloff
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2023-06-16 20:28:29 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2023-06-17 09:06:58 +0200
commitc2d290fa917fec68050a930c6297e794b5785244 (patch)
tree5bb4fae4de02e5fb4eafea27356df476b6e29cc1 /include/xmloff
parent9e2d4e9b43cb835c0fb2783374a1f2666807984c (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 'include/xmloff')
-rw-r--r--include/xmloff/xmlictxt.hxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/xmloff/xmlictxt.hxx b/include/xmloff/xmlictxt.hxx
index 7ff91aa84d7e..ea10bd002b83 100644
--- a/include/xmloff/xmlictxt.hxx
+++ b/include/xmloff/xmlictxt.hxx
@@ -120,6 +120,9 @@ public:
#define XMLOFF_WARN_UNKNOWN_ELEMENT(area, token) \
SAL_WARN(area, "unknown element " << SvXMLImport::getPrefixAndNameFromToken(token));
+#define XMLOFF_INFO_UNKNOWN_ELEMENT(area, token) \
+ SAL_INFO(area, "unknown element " << SvXMLImport::getPrefixAndNameFromToken(token));
+
#endif // INCLUDED_XMLOFF_XMLICTXT_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */