diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2007-10-22 15:33:36 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2007-10-22 15:33:36 +0000 |
commit | 9ba1233b259fb307520f59c60ab571bc02e1f113 (patch) | |
tree | 711c4e1da7beeb85301d5e5f0155900e1d0bd17f /xmloff | |
parent | d5daeb123646ae2aa569e7f21b5675bb0b44d7fa (diff) |
INTEGRATION: CWS chart14 (1.5.190); FILE MERGED
2007/09/28 10:42:29 iha 1.5.190.1: #i82051# Allow to display each part of a data label in a separate line
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 |