summaryrefslogtreecommitdiff
path: root/oox/source/drawingml
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2008-07-22 12:48:46 +0000
committerOliver Bolte <obo@openoffice.org>2008-07-22 12:48:46 +0000
commitc05b3a6e1d5dc706895723b500cab1cd22807940 (patch)
treeb7a87d557550ed21b1f2a2520a8663380995df31 /oox/source/drawingml
parent0f3501b6e043d9d004c2298afa1089ff7e4c40a6 (diff)
INTEGRATION: CWS xmlfilter06 (1.2.6); FILE MERGED
2008/06/06 16:27:53 dr 1.2.6.2: chart formatting: builtin line/fill/effect styles, manual line formatting 2008/05/27 10:40:38 dr 1.2.6.1: joined changes from CWS xmlfilter05
Diffstat (limited to 'oox/source/drawingml')
-rw-r--r--oox/source/drawingml/chart/chartspacefragment.cxx8
1 files changed, 7 insertions, 1 deletions
diff --git a/oox/source/drawingml/chart/chartspacefragment.cxx b/oox/source/drawingml/chart/chartspacefragment.cxx
index 0e7723fe5ef6..46e1be6357dc 100644
--- a/oox/source/drawingml/chart/chartspacefragment.cxx
+++ b/oox/source/drawingml/chart/chartspacefragment.cxx
@@ -8,7 +8,7 @@
*
* $RCSfile: chartspacefragment.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
* This file is part of OpenOffice.org.
*
@@ -84,9 +84,13 @@ ContextWrapper ChartSpaceFragment::onCreateContext( sal_Int32 nElement, const At
// default is 'false', not 'true' as specified
mrModel.mbAutoTitleDel = rAttribs.getBool( XML_val, false );
return false;
+ case C_TOKEN( backWall ):
+ return new WallFloorContext( *this, mrModel.mxBackWall.create() );
case C_TOKEN( dispBlanksAs ):
mrModel.mnDispBlanksAs = rAttribs.getToken( XML_val, XML_zero );
return false;
+ case C_TOKEN( floor ):
+ return new WallFloorContext( *this, mrModel.mxFloor.create() );
case C_TOKEN( legend ):
return new LegendContext( *this, mrModel.mxLegend.create() );
case C_TOKEN( plotArea ):
@@ -99,6 +103,8 @@ ContextWrapper ChartSpaceFragment::onCreateContext( sal_Int32 nElement, const At
// default is 'false', not 'true' as specified
mrModel.mbShowLabelsOverMax = rAttribs.getBool( XML_val, false );
return false;
+ case C_TOKEN( sideWall ):
+ return new WallFloorContext( *this, mrModel.mxSideWall.create() );
case C_TOKEN( title ):
return new TitleContext( *this, mrModel.mxTitle.create() );
case C_TOKEN( view3D ):