diff options
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/chart/XMLChartPropertyContext.cxx | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/xmloff/source/chart/XMLChartPropertyContext.cxx b/xmloff/source/chart/XMLChartPropertyContext.cxx index 2686074fc3d9..95c03a8b982b 100644 --- a/xmloff/source/chart/XMLChartPropertyContext.cxx +++ b/xmloff/source/chart/XMLChartPropertyContext.cxx @@ -4,9 +4,9 @@ * * $RCSfile: XMLChartPropertyContext.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: obo $ $Date: 2006-09-17 10:16:21 $ + * last change: $Author: vg $ $Date: 2007-10-22 16:33:36 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -38,9 +38,8 @@ #include "XMLChartPropertyContext.hxx" #include "PropertyMap.hxx" -#ifndef _XMLOFF_SYMBOLIMAGECONTEXT_HXX_ #include "XMLSymbolImageContext.hxx" -#endif +#include "XMLLabelSeparatorContext.hxx" TYPEINIT1( XMLChartPropertyContext, SvXMLImportContext ); @@ -75,6 +74,9 @@ SvXMLImportContext* XMLChartPropertyContext::CreateChildContext( case XML_SCH_CONTEXT_SPECIAL_SYMBOL_IMAGE: pContext = new XMLSymbolImageContext( GetImport(), nPrefix, rLocalName, rProp, rProperties ); break; + case XML_SCH_CONTEXT_SPECIAL_LABEL_SEPARATOR: + pContext = new XMLLabelSeparatorContext( GetImport(), nPrefix, rLocalName, rProp, rProperties ); + break; } // default / no context yet: create child context by base class |