writerfilter/source/dmapper/CellMarginHandler.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b863b599c751b28dde2d15188a9ed7cbce4c158a
Author:     Noel Grandin <noelgran...@gmail.com>
AuthorDate: Wed Feb 21 20:51:47 2024 +0200
Commit:     Miklos Vajna <vmik...@collabora.com>
CommitDate: Thu Feb 22 08:41:05 2024 +0100

    SAL_WARN->INFO in CellMarginHandler::lcl_attribute
    
    this has been here since
        commit 6a9e4e77e83875ecce3b387736f6dd1ea221ced8
        Author: RĂ¼diger Timm <r...@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 <vmik...@collabora.com>

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");
     }
 }
 

Reply via email to