summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2007-08-01 10:04:22 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2007-08-01 10:04:22 +0000
commit6475c0b0e852f072c556f7606dbf2229b1f0d046 (patch)
tree9b77ea8c64ae11dea0536442447372d78ffa621c
parent455940cc69c2fc2d2fce9d92705bb9e00248be30 (diff)
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
-rw-r--r--xmloff/source/draw/animationexport.cxx8
1 files 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() );
}
}