diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-02-09 18:07:11 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-02-09 18:09:18 +0100 |
commit | aa685127e756be55a3d4780b4f82c8462ca4e1de (patch) | |
tree | ea1f2f13f81e5e3f69ed58fe12f3f741d18912f2 /oox | |
parent | 8a0fc75030403e1fb09bd60898c771aff454bbd2 (diff) |
oox: replace legacy DBG_WARNINGs
Change-Id: If2c47bbd0c12cc006b38972c5f71eb00d3b03460
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/export/chartexport.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx index 743715224287..5cd30b2b7bf5 100644 --- a/oox/source/export/chartexport.cxx +++ b/oox/source/export/chartexport.cxx @@ -784,7 +784,7 @@ void ChartExport::exportExternalData( Reference< ::com::sun::star::chart::XChart } catch( beans::UnknownPropertyException & ) { - DBG_WARNING( "Required property not found in ChartDocument" ); + SAL_WARN("oox", "Required property not found in ChartDocument"); } } if(!externalDataPath.isEmpty()) @@ -844,7 +844,7 @@ void ChartExport::exportChart( Reference< ::com::sun::star::chart::XChartDocumen } catch( beans::UnknownPropertyException & ) { - DBG_WARNING( "Required property not found in ChartDocument" ); + SAL_WARN("oox", "Required property not found in ChartDocument"); } } // if( xDocPropSet.is()) @@ -921,7 +921,7 @@ void ChartExport::exportLegend( Reference< ::com::sun::star::chart::XChartDocume } catch( beans::UnknownPropertyException & ) { - DBG_WARNING( "Property Align not found in ChartLegend" ); + SAL_WARN("oox", "Property Align not found in ChartLegend"); } const char* strPos = NULL; |