summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorBjörn Milcke <bm@openoffice.org>2001-05-29 11:44:51 +0000
committerBjörn Milcke <bm@openoffice.org>2001-05-29 11:44:51 +0000
commit5b8e92d8737c657f735f58a877cb69ad1e7e5c40 (patch)
tree3c7c94140efdc158bfa4ec2379d75dc24078ec03 /xmloff
parent7a194a27ef5820a25d13e98d9b8e1f85c792886f (diff)
#85911# don't filter SymbolType: export always if PropertyState is DIRECT (as usual)
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/chart/PropertyMap.hxx6
-rw-r--r--xmloff/source/chart/PropertyMaps.cxx13
2 files changed, 5 insertions, 14 deletions
diff --git a/xmloff/source/chart/PropertyMap.hxx b/xmloff/source/chart/PropertyMap.hxx
index 684103c66806..417c672733d4 100644
--- a/xmloff/source/chart/PropertyMap.hxx
+++ b/xmloff/source/chart/PropertyMap.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: PropertyMap.hxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: bm $ $Date: 2001-05-11 18:33:24 $
+ * last change: $Author: bm $ $Date: 2001-05-29 12:44:51 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -158,7 +158,7 @@ const XMLPropertyMapEntry aXMLChartPropMap[] =
MAP_ENTRY( "SolidType", CHART, solid_type, XML_SCH_TYPE_SOLID_TYPE ),
MAP_ENTRY( "SplineType", CHART, splines, XML_TYPE_NUMBER ),
MAP_ENTRY( "Stacked", CHART, stacked, XML_TYPE_BOOL ),
- MAP_CONTEXT( "SymbolType", CHART, symbol, XML_TYPE_NUMBER, USER_SYMBOL ),
+ MAP_ENTRY( "SymbolType", CHART, symbol, XML_TYPE_NUMBER ),
MAP_SPECIAL( "SymbolSize", CHART, symbol_width, XML_TYPE_MEASURE | MID_FLAG_MERGE_PROPERTY, SYMBOL_WIDTH ),
MAP_SPECIAL( "SymbolSize", CHART, symbol_height, XML_TYPE_MEASURE | MID_FLAG_MERGE_PROPERTY, SYMBOL_HEIGHT ),
MAP_SPECIAL( "SymbolBitmapURL", CHART, symbol_image_name, XML_TYPE_STRING, SYMBOL_IMAGE_NAME ),
diff --git a/xmloff/source/chart/PropertyMaps.cxx b/xmloff/source/chart/PropertyMaps.cxx
index 8a140c97cc34..f4a35c981a3f 100644
--- a/xmloff/source/chart/PropertyMaps.cxx
+++ b/xmloff/source/chart/PropertyMaps.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: PropertyMaps.cxx,v $
*
- * $Revision: 1.22 $
+ * $Revision: 1.23 $
*
- * last change: $Author: bm $ $Date: 2001-05-17 13:24:32 $
+ * last change: $Author: bm $ $Date: 2001-05-29 12:44:31 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -235,15 +235,6 @@ void XMLChartExportPropertyMapper::ContextFilter(
// to prevent writing this property set mnIndex member to -1
switch( getPropertySetMapper()->GetEntryContextId( property->mnIndex ))
{
- case XML_SCH_CONTEXT_USER_SYMBOL:
- {
- sal_Int32 nIndex = chart::ChartSymbolType::NONE;
- property->maValue >>= nIndex;
- if( nIndex == chart::ChartSymbolType::NONE )
- property->mnIndex = -1;
- }
- break;
-
// if Auto... is set the corresponding properties mustn't be exported
case XML_SCH_CONTEXT_MIN:
bCheckAuto = sal_True;