sd/source/filter/eppt/pptx-epptooxml.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-)
New commits: commit 34d9db285589c58e6f0dd1b37adc882252847637 Author: Noel Grandin <[email protected]> Date: Fri Jun 10 16:10:02 2016 +0200 no need for this message to be SAL_WARN Change-Id: I3861d28cfcab9b5f18451259a996d7561d5f6c00 diff --git a/sd/source/filter/eppt/pptx-epptooxml.cxx b/sd/source/filter/eppt/pptx-epptooxml.cxx index 32f7171..3f39af3 100644 --- a/sd/source/filter/eppt/pptx-epptooxml.cxx +++ b/sd/source/filter/eppt/pptx-epptooxml.cxx @@ -2350,15 +2350,15 @@ void dump_pset(Reference< XPropertySet > rXPropSet) RectanglePoint pointValue; if( value >>= strValue ) - SAL_WARN("sd.eppt", name << " = \"" << strValue << "\""); + SAL_INFO("sd.eppt", name << " = \"" << strValue << "\""); else if( value >>= intValue ) - SAL_WARN("sd.eppt", name << " = " << intValue << "(hex : " << std::hex << intValue << ")"); + SAL_INFO("sd.eppt", name << " = " << intValue << "(hex : " << std::hex << intValue << ")"); else if( value >>= boolValue ) - SAL_WARN("sd.eppt", name << " = " << boolValue << " (bool)"); + SAL_INFO("sd.eppt", name << " = " << boolValue << " (bool)"); else if( value >>= pointValue ) - SAL_WARN("sd.eppt", name << " = " << pointValue << " (RectanglePoint)"); + SAL_INFO("sd.eppt", name << " = " << pointValue << " (RectanglePoint)"); else - SAL_WARN("sd.eppt", "??? <unhandled type>"); + SAL_INFO("sd.eppt", "??? <unhandled type>"); } } _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
