From 6475c0b0e852f072c556f7606dbf2229b1f0d046 Mon Sep 17 00:00:00 2001 From: Jens-Heiner Rechtien Date: Wed, 1 Aug 2007 10:04:22 +0000 Subject: INTEGRATION: CWS pathfinder02 (1.13.14); FILE MERGED 2007/07/23 14:25:06 cl 1.13.14.1: #i79248# made replace the default for additive attribute and changed namespace to smil --- xmloff/source/draw/animationexport.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/xmloff/source/draw/animationexport.cxx b/xmloff/source/draw/animationexport.cxx index b00e5f0a2b7a..5e48dd2a6d68 100644 --- a/xmloff/source/draw/animationexport.cxx +++ b/xmloff/source/draw/animationexport.cxx @@ -4,9 +4,9 @@ * * $RCSfile: animationexport.cxx,v $ * - * $Revision: 1.13 $ + * $Revision: 1.14 $ * - * last change: $Author: hr $ $Date: 2007-06-27 15:31:48 $ + * last change: $Author: hr $ $Date: 2007-08-01 11:04:22 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -1318,10 +1318,10 @@ void AnimationsExporterImpl::exportAnimate( const Reference< XAnimate >& xAnimat mrExport.AddAttribute( XML_NAMESPACE_SMIL, XML_ACCUMULATE, XML_SUM ); nTemp = xAnimate->getAdditive(); - if( nTemp != AnimationAdditiveMode::BASE ) + if( nTemp != AnimationAdditiveMode::REPLACE ) { SvXMLUnitConverter::convertEnum( sTmp, (USHORT)nTemp, getAnimationsEnumMap(Animations_EnumMap_AdditiveMode) ); - mrExport.AddAttribute( XML_NAMESPACE_PRESENTATION, XML_ADDITIVE, sTmp.makeStringAndClear() ); + mrExport.AddAttribute( XML_NAMESPACE_SMIL, XML_ADDITIVE, sTmp.makeStringAndClear() ); } } -- cgit