diff options
author | Noel Grandin <noel@peralex.com> | 2016-06-10 16:10:02 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-06-10 16:10:22 +0200 |
commit | 34d9db285589c58e6f0dd1b37adc882252847637 (patch) | |
tree | 87169020e0098ae046139a7a70338a93bb67282e /sd | |
parent | 5c1a1d1c66aff497702abc20df5832fa348f1008 (diff) |
no need for this message to be SAL_WARN
Change-Id: I3861d28cfcab9b5f18451259a996d7561d5f6c00
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/filter/eppt/pptx-epptooxml.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sd/source/filter/eppt/pptx-epptooxml.cxx b/sd/source/filter/eppt/pptx-epptooxml.cxx index 32f717196b83..3f39af3e3235 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>"); } } |