summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2015-04-14 23:07:22 +0200
committerAndras Timar <andras.timar@collabora.com>2015-04-15 09:24:45 +0200
commit063882a18477abc045719353ac9fbd85763de508 (patch)
treec8b66c8206a4bd047ad33483d0071ccd2cf9436c
parent8e4b3e4d85fa914f20f45b90ed1bd09573b1b09b (diff)
we use the correct OOXML default value now
Change-Id: I1aad3e40ad61a1397b619bdc6e0f578e2c9c141e (cherry picked from commit ec2c8a602ecb8664b24d77e6ca6af17bf59d211c)
-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 6be487f72387..0b63d3e20350 100644
--- a/oox/source/export/chartexport.cxx
+++ b/oox/source/export/chartexport.cxx
@@ -800,7 +800,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 )