summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Lippka <cl@openoffice.org>2001-02-27 15:09:08 +0000
committerChristian Lippka <cl@openoffice.org>2001-02-27 15:09:08 +0000
commit308865ee6211bd0e90d1a4651192d045b0b8beaa (patch)
treeda6652ef44600bf06168cacd73537c83cd7579b1
parent9f630ee522205aff15bba0636590cd6edce5da72 (diff)
#82017# added Para properties to graphics property mapper
-rw-r--r--xmloff/source/draw/sdxmlexp.cxx6
-rw-r--r--xmloff/source/draw/shapeexport.cxx8
-rw-r--r--xmloff/source/draw/shapeimport.cxx8
3 files changed, 11 insertions, 11 deletions
diff --git a/xmloff/source/draw/sdxmlexp.cxx b/xmloff/source/draw/sdxmlexp.cxx
index dff3d6dc8a1c..dd90843c36ea 100644
--- a/xmloff/source/draw/sdxmlexp.cxx
+++ b/xmloff/source/draw/sdxmlexp.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: sdxmlexp.cxx,v $
*
- * $Revision: 1.48 $
+ * $Revision: 1.49 $
*
- * last change: $Author: cl $ $Date: 2001-02-21 18:04:45 $
+ * last change: $Author: cl $ $Date: 2001-02-27 16:09:08 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -531,7 +531,7 @@ void SAL_CALL SdXMLExport::setSourceDocument( const uno::Reference< lang::XCompo
mpPropertySetMapper->acquire();
// chain text attributes
- mpPropertySetMapper->ChainExportMapper(XMLTextParagraphExport::CreateCharExtPropMapper(*this));
+ mpPropertySetMapper->ChainExportMapper(XMLTextParagraphExport::CreateParaExtPropMapper(*this));
// construct PresPagePropsMapper
xMapper = new XMLPropertySetMapper((XMLPropertyMapEntry*)aXMLSDPresPageProps, aFactoryRef);
diff --git a/xmloff/source/draw/shapeexport.cxx b/xmloff/source/draw/shapeexport.cxx
index 45dd1d856513..5d5622a865d6 100644
--- a/xmloff/source/draw/shapeexport.cxx
+++ b/xmloff/source/draw/shapeexport.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: shapeexport.cxx,v $
*
- * $Revision: 1.19 $
+ * $Revision: 1.20 $
*
- * last change: $Author: cl $ $Date: 2001-02-11 13:18:54 $
+ * last change: $Author: cl $ $Date: 2001-02-27 16:09:08 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -144,7 +144,7 @@ XMLShapeExport::XMLShapeExport(SvXMLExport& rExp,
}
// chain text attributes
- xPropertySetMapper->ChainExportMapper(XMLTextParagraphExport::CreateCharExtPropMapper(rExp));
+ xPropertySetMapper->ChainExportMapper(XMLTextParagraphExport::CreateParaExtPropMapper(rExp));
/*
// chain form attributes
@@ -670,7 +670,7 @@ SvXMLExportPropertyMapper* XMLShapeExport::CreateShapePropMapper(
(XMLTextListAutoStylePool*)&rExport.GetTextParagraphExport()->GetListAutoStylePool(),
rExport );
// chain text attributes
- pResult->ChainExportMapper( XMLTextParagraphExport::CreateCharExtPropMapper( rExport ));
+ pResult->ChainExportMapper( XMLTextParagraphExport::CreateParaExtPropMapper( rExport ));
return pResult;
}
diff --git a/xmloff/source/draw/shapeimport.cxx b/xmloff/source/draw/shapeimport.cxx
index d6a4957f0d86..570cca810960 100644
--- a/xmloff/source/draw/shapeimport.cxx
+++ b/xmloff/source/draw/shapeimport.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: shapeimport.cxx,v $
*
- * $Revision: 1.28 $
+ * $Revision: 1.29 $
*
- * last change: $Author: cl $ $Date: 2001-02-21 18:04:45 $
+ * last change: $Author: cl $ $Date: 2001-02-27 16:09:08 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -174,7 +174,7 @@ XMLShapeImportHelper::XMLShapeImportHelper(
}
// chain text attributes
- mpPropertySetMapper->ChainImportMapper(XMLTextImportHelper::CreateCharExtPropMapper());
+ mpPropertySetMapper->ChainImportMapper(XMLTextImportHelper::CreateParaExtPropMapper());
/*
// chain form attributes
@@ -1042,6 +1042,6 @@ SvXMLImportPropertyMapper* XMLShapeImportHelper::CreateShapePropMapper( const un
SvXMLImportPropertyMapper* pResult = new SvXMLImportPropertyMapper( xMapper );
// chain text attributes
- pResult->ChainImportMapper( XMLTextImportHelper::CreateCharExtPropMapper() );
+ pResult->ChainImportMapper( XMLTextImportHelper::CreateParaExtPropMapper() );
return pResult;
}