diff options
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/export/vmlexport.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/oox/source/export/vmlexport.cxx b/oox/source/export/vmlexport.cxx index d4243c6e07bf..f00d59f4159e 100644 --- a/oox/source/export/vmlexport.cxx +++ b/oox/source/export/vmlexport.cxx @@ -286,10 +286,7 @@ static void impl_AddBool( sax_fastparser::FastAttributeList *pAttrList, sal_Int3 static void impl_AddColor( sax_fastparser::FastAttributeList *pAttrList, sal_Int32 nElement, sal_uInt32 nColor ) { -#if OSL_DEBUG_LEVEL > 0 - if ( nColor & 0xFF000000 ) - fprintf( stderr, "TODO: this is not a RGB value!\n" ); -#endif + SAL_WARN_IF( nColor & 0xFF000000 , "oox.vml" , "TODO: this is not a RGB value!"); if ( !pAttrList || ( nColor & 0xFF000000 ) ) return; |