summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2024-02-21 20:51:47 +0200
committerMiklos Vajna <vmiklos@collabora.com>2024-02-22 08:41:05 +0100
commitb863b599c751b28dde2d15188a9ed7cbce4c158a (patch)
tree0140ea5f0ced2d163d6700cab21cf889dcd73851
parentd0cb804f7a25274d725475418a97c293f55f30cf (diff)
SAL_WARN->INFO in CellMarginHandler::lcl_attribute
this has been here since commit 6a9e4e77e83875ecce3b387736f6dd1ea221ced8 Author: Rüdiger Timm <rt@openoffice.org> Date: Fri Apr 18 11:11:49 2008 +0000 INTEGRATION: CWS xmlfilter04 (1.1.2); FILE ADDED and is very noisy, but does not seem to indicate a problem, given the lack of changes here. I added an assert here, and I saw all of: case NS_ooxml::LN_CT_TcMar_top: case NS_ooxml::LN_CT_TcMar_left: case NS_ooxml::LN_CT_TcMar_bottom: case NS_ooxml::LN_CT_TcMar_right: Change-Id: Id698f2344844c1335edac981023228be7e27da7e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163711 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
-rw-r--r--writerfilter/source/dmapper/CellMarginHandler.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/writerfilter/source/dmapper/CellMarginHandler.cxx b/writerfilter/source/dmapper/CellMarginHandler.cxx
index 8b7b5fa77c23..e8262156e55f 100644
--- a/writerfilter/source/dmapper/CellMarginHandler.cxx
+++ b/writerfilter/source/dmapper/CellMarginHandler.cxx
@@ -62,7 +62,7 @@ void CellMarginHandler::lcl_attribute(Id rName, Value & rVal)
m_nType = nIntValue;
break;
default:
- SAL_WARN("writerfilter", "CellMarginHandler::lcl_attribute: unknown attribute");
+ SAL_INFO("writerfilter", "CellMarginHandler::lcl_attribute: unknown attribute");
}
}