diff options
author | Thomas Viehmann <tv@beamnet.de> | 2014-09-01 22:32:26 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-09-01 15:39:42 -0500 |
commit | fba7b58a9ddaa829892bf3a3e8f3dd6970664f78 (patch) | |
tree | 0a3f892518edb1b9733fc65ce28c8ed74ca01e66 | |
parent | 1a91abb451806bd93a08953c6a1afdb88995705e (diff) |
fix typo Sufface->Surface
Change-Id: I90847d0edbc2c13e405562647b150012bc5df7e2
Reviewed-on: https://gerrit.libreoffice.org/11249
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
-rw-r--r-- | include/oox/export/chartexport.hxx | 2 | ||||
-rw-r--r-- | oox/source/export/chartexport.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/oox/export/chartexport.hxx b/include/oox/export/chartexport.hxx index 2fd383b7beca..ed8743c03c3f 100644 --- a/include/oox/export/chartexport.hxx +++ b/include/oox/export/chartexport.hxx @@ -138,7 +138,7 @@ private: void exportRadarChart( com::sun::star::uno::Reference< com::sun::star::chart2::XChartType > xChartType ); void exportScatterChart( com::sun::star::uno::Reference< com::sun::star::chart2::XChartType > xChartType ); void exportStockChart( com::sun::star::uno::Reference< com::sun::star::chart2::XChartType > xChartType ); - void exportSuffaceChart( com::sun::star::uno::Reference< com::sun::star::chart2::XChartType > xChartType ); + void exportSurfaceChart( com::sun::star::uno::Reference< com::sun::star::chart2::XChartType > xChartType ); void exportHiLowLines(); void exportUpDownBars(com::sun::star::uno::Reference< com::sun::star::chart2::XChartType > xChartType ); diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx index 27b9385648d6..d074fe2da3f7 100644 --- a/oox/source/export/chartexport.cxx +++ b/oox/source/export/chartexport.cxx @@ -1116,7 +1116,7 @@ void ChartExport::exportPlotArea( ) } case chart::TYPEID_SURFACE: { - exportSuffaceChart( xChartType ); + exportSurfaceChart( xChartType ); break; } default: @@ -1612,7 +1612,7 @@ void ChartExport::exportUpDownBars( Reference< chart2::XChartType > xChartType) } } -void ChartExport::exportSuffaceChart( Reference< chart2::XChartType > xChartType ) +void ChartExport::exportSurfaceChart( Reference< chart2::XChartType > xChartType ) { FSHelperPtr pFS = GetFS(); sal_Int32 nTypeId = XML_surfaceChart; |