summaryrefslogtreecommitdiff
path: root/oox/source/ppt/slidetransition.cxx
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-03-04 09:34:37 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-03-04 18:43:38 +0100
commitf566585f0882e65778c424640b9312cb19b007b9 (patch)
tree4d04704fd40ab4178de529d8ab7795ce227f5b8a /oox/source/ppt/slidetransition.cxx
parentf1659922a6e152f6a38ab13d7cb308b5728db16c (diff)
remove the inheritance to std::map in PropertyMap
Change-Id: Iaaf5b7ab47ffa151cd7c8ea376763d02c883f377
Diffstat (limited to 'oox/source/ppt/slidetransition.cxx')
-rw-r--r--oox/source/ppt/slidetransition.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/oox/source/ppt/slidetransition.cxx b/oox/source/ppt/slidetransition.cxx
index 7f060c02ede7..6033c6118f34 100644
--- a/oox/source/ppt/slidetransition.cxx
+++ b/oox/source/ppt/slidetransition.cxx
@@ -75,14 +75,14 @@ namespace oox { namespace ppt {
{
try
{
- aProps[ PROP_TransitionType ] <<= mnTransitionType;
- aProps[ PROP_TransitionSubtype ] <<= mnTransitionSubType;
- aProps[ PROP_TransitionDirection ] <<= mbTransitionDirectionNormal;
- aProps[ PROP_Speed ] <<= mnAnimationSpeed;
- aProps[ PROP_TransitionFadeColor ] <<= mnFadeColor;
+ aProps.setProperty( PROP_TransitionType, mnTransitionType);
+ aProps.setProperty( PROP_TransitionSubtype, mnTransitionSubType);
+ aProps.setProperty( PROP_TransitionDirection, mbTransitionDirectionNormal);
+ aProps.setProperty( PROP_Speed, mnAnimationSpeed);
+ aProps.setProperty( PROP_TransitionFadeColor, mnFadeColor);
if( mnAdvanceTime != -1 ) {
- aProps[ PROP_Duration ] <<= mnAdvanceTime/1000;
- aProps[ PROP_Change ] <<= static_cast<sal_Int32>(1);
+ aProps.setProperty( PROP_Duration, mnAdvanceTime/1000);
+ aProps.setProperty( PROP_Change, static_cast<sal_Int32>(1));
}
}
catch( Exception& )