summaryrefslogtreecommitdiff
path: root/oox
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:12:20 +0200
commitd0b06ecdfed2e460cc63a96f70470c52b9b97b69 (patch)
tree43726b26829362651e4cb52ca62a6fe388e9ea42 /oox
parent02b4563d8ac90063a56f86e8db2196ee491a83c5 (diff)
we use the correct OOXML default value now
Change-Id: I1aad3e40ad61a1397b619bdc6e0f578e2c9c141e (cherry picked from commit ec2c8a602ecb8664b24d77e6ca6af17bf59d211c)
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 092909645ccb..a6b1ad1e97a1 100644
--- a/oox/source/export/chartexport.cxx
+++ b/oox/source/export/chartexport.cxx
@@ -856,7 +856,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 )