diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-08-20 07:12:06 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-08-20 07:12:06 +0000 |
commit | 0f5d53835620397de60cb4370b445cf8e89cf206 (patch) | |
tree | e74ded945cc86e99f4b650cf96d350256a021ea7 /xmloff | |
parent | 93b1d0f147cabaad55a2da4feef05a7da39ed95e (diff) |
INTEGRATION: CWS oasis2 (1.39.6); FILE MERGED
2004/08/04 08:53:23 bm 1.39.6.2: #32439# chart:symbol became chart:symbol-type and chart:symbol-name
2004/07/30 15:06:55 bm 1.39.6.1: #i32346# symbol-type
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/chart/PropertyMaps.cxx | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/xmloff/source/chart/PropertyMaps.cxx b/xmloff/source/chart/PropertyMaps.cxx index 3a62e95c9c81..e9944fa7b387 100644 --- a/xmloff/source/chart/PropertyMaps.cxx +++ b/xmloff/source/chart/PropertyMaps.cxx @@ -2,9 +2,9 @@ * * $RCSfile: PropertyMaps.cxx,v $ * - * $Revision: 1.39 $ + * $Revision: 1.40 $ * - * last change: $Author: rt $ $Date: 2004-07-13 08:02:29 $ + * last change: $Author: rt $ $Date: 2004-08-20 08:12:06 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -103,6 +103,9 @@ #ifndef _XMLTEXTORIENTATIONHDL_HXX_ #include "XMLTextOrientationHdl.hxx" #endif +#ifndef _XMLSYMBOLTYPEPROPERTYHDL_HXX_ +#include "XMLSymbolTypePropertyHdl.hxx" +#endif #ifndef _COM_SUN_STAR_CHART_CHARTAXISMARKS_HPP_ #include <com/sun/star/chart/ChartAxisMarks.hpp> @@ -203,6 +206,14 @@ const XMLPropertyHandler* XMLChartPropHdlFactory::GetPropertyHandler( sal_Int32 case XML_SCH_TYPE_INTERPOLATION: pHdl = new XMLEnumPropertyHdl( aXMLChartInterpolationTypeEnumMap, ::getCppuType((const sal_Int32*)0) ); + break; + case XML_SCH_TYPE_SYMBOL_TYPE: + pHdl = new XMLSymbolTypePropertyHdl( false ); + break; + + case XML_SCH_TYPE_NAMED_SYMBOL: + pHdl = new XMLSymbolTypePropertyHdl( true ); + break; } if( pHdl ) PutHdlCache( nType, pHdl ); |