summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2015-04-14 23:07:22 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2015-04-15 03:58:33 +0200
commitec2c8a602ecb8664b24d77e6ca6af17bf59d211c (patch)
tree9fef58c63157efdf5dc90660d9f7f170707d366e /oox
parentc16dcf919affd803f4a52cec79be44b62b7a92ee (diff)
we use the correct OOXML default value now
Change-Id: I1aad3e40ad61a1397b619bdc6e0f578e2c9c141e
Diffstat (limited to 'oox')
-rw-r--r--oox/source/export/chartexport.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx
index c12bf02025fe..7209fe238de2 100644
--- a/oox/source/export/chartexport.cxx
+++ b/oox/source/export/chartexport.cxx
@@ -859,7 +859,12 @@ void ChartExport::exportChart( Reference< ::com::sun::star::chart::XChartDocumen
{
Reference< drawing::XShape > xShape = rChartDoc->getTitle();
if( xShape.is() )
+ {
exportTitle( xShape );
+ pFS->singleElement( FSNS(XML_c, XML_autoTitleDeleted),
+ XML_val, "0",
+ FSEND);
+ }
}
InitPlotArea( );
if( mbIs3DChart )