summaryrefslogtreecommitdiff
path: root/xmloff/inc/anim.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-02-28 15:10:25 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-03-01 06:31:40 +0000
commit121525db245624b96a85824cc6ad3013e05e34b0 (patch)
tree406dcaa382cca64f7698b9ace93c101977fa0a5c /xmloff/inc/anim.hxx
parentdd4ed25aae41788e97500f183521f60543e759ea (diff)
these arrays should be const
Change-Id: I808064abce15c4ec240d61e8168f0430ebf4c86c Reviewed-on: https://gerrit.libreoffice.org/34722 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmloff/inc/anim.hxx')
-rw-r--r--xmloff/inc/anim.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/inc/anim.hxx b/xmloff/inc/anim.hxx
index 6dafc1fbfdc3..809273f0a87d 100644
--- a/xmloff/inc/anim.hxx
+++ b/xmloff/inc/anim.hxx
@@ -45,7 +45,7 @@ enum XMLEffect
EK_stretch
};
-extern SvXMLEnumMapEntry aXML_AnimationEffect_EnumMap[];
+extern const SvXMLEnumMapEntry aXML_AnimationEffect_EnumMap[];
enum XMLEffectDirection
{
@@ -84,9 +84,9 @@ enum XMLEffectDirection
ED_cclockwise
};
-extern SvXMLEnumMapEntry aXML_AnimationDirection_EnumMap[];
+extern const SvXMLEnumMapEntry aXML_AnimationDirection_EnumMap[];
-extern SvXMLEnumMapEntry aXML_AnimationSpeed_EnumMap[];
+extern const SvXMLEnumMapEntry aXML_AnimationSpeed_EnumMap[];
void SdXMLImplSetEffect( css::presentation::AnimationEffect eEffect, XMLEffect& eKind, XMLEffectDirection& eDirection, sal_Int16& nStartScale, bool& bIn );
css::presentation::AnimationEffect ImplSdXMLgetEffect( XMLEffect eKind, XMLEffectDirection eDirection, sal_Int16 nStartScale, bool bIn );