summaryrefslogtreecommitdiff
path: root/xmloff/source/chart/PropertyMaps.cxx
diff options
context:
space:
mode:
authorBjörn Milcke <bm@openoffice.org>2001-06-01 11:35:30 +0000
committerBjörn Milcke <bm@openoffice.org>2001-06-01 11:35:30 +0000
commit7ed528e3df7e2aeefd7a655f4dd3613a2f97b5aa (patch)
treea9c28acf8af4f215ef7ff2afd0efd147893e53d9 /xmloff/source/chart/PropertyMaps.cxx
parentd5b1e4827f8e6e0661563ec856cd80d926ba7b58 (diff)
#85924# text properties are no longer chained in draw mapper, so do it explicitly
Diffstat (limited to 'xmloff/source/chart/PropertyMaps.cxx')
-rw-r--r--xmloff/source/chart/PropertyMaps.cxx12
1 files changed, 10 insertions, 2 deletions
diff --git a/xmloff/source/chart/PropertyMaps.cxx b/xmloff/source/chart/PropertyMaps.cxx
index f4a35c981a3f..4e6329a80d84 100644
--- a/xmloff/source/chart/PropertyMaps.cxx
+++ b/xmloff/source/chart/PropertyMaps.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: PropertyMaps.cxx,v $
*
- * $Revision: 1.23 $
+ * $Revision: 1.24 $
*
- * last change: $Author: bm $ $Date: 2001-05-29 12:44:31 $
+ * last change: $Author: bm $ $Date: 2001-06-01 12:35:30 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -213,6 +213,11 @@ XMLChartExportPropertyMapper::XMLChartExportPropertyMapper( const UniReference<
msFalse( rtl::OUString::createFromAscii( sXML_false )),
mrExport( rExport )
{
+ // chain draw properties
+ ChainExportMapper( XMLShapeExport::CreateShapePropMapper( rExport ));
+
+ // chain text properties
+ ChainExportMapper( XMLTextParagraphExport::CreateParaExtPropMapper( rExport ));
}
XMLChartExportPropertyMapper::~XMLChartExportPropertyMapper()
@@ -402,6 +407,9 @@ XMLChartImportPropertyMapper::XMLChartImportPropertyMapper( const UniReference<
// give an empty model. It is only used for numbering rules that don't exist in chart
uno::Reference< frame::XModel > xEmptyModel;
ChainImportMapper( XMLShapeImportHelper::CreateShapePropMapper( xEmptyModel ));
+
+ // chain text properties
+ ChainImportMapper( XMLTextImportHelper::CreateParaExtPropMapper());
}
XMLChartImportPropertyMapper::~XMLChartImportPropertyMapper()