diff options
author | Christian Lippka <cl@openoffice.org> | 2001-05-23 07:56:35 +0000 |
---|---|---|
committer | Christian Lippka <cl@openoffice.org> | 2001-05-23 07:56:35 +0000 |
commit | c6431349f002d326d811070c29534e12efbe53de (patch) | |
tree | 0d0576fc58e18a531257a1b9c3161fa75a856630 | |
parent | 103dd2f5b26945860fdbd84bc0a4d57f93b00b3e (diff) |
#87373# fixed missing move effects
-rw-r--r-- | xmloff/source/draw/animimp.cxx | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/xmloff/source/draw/animimp.cxx b/xmloff/source/draw/animimp.cxx index 0f4a6dbdbba3..f128b9c3bb95 100644 --- a/xmloff/source/draw/animimp.cxx +++ b/xmloff/source/draw/animimp.cxx @@ -2,9 +2,9 @@ * * $RCSfile: animimp.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: sab $ $Date: 2001-03-16 14:35:56 $ + * last change: $Author: cl $ $Date: 2001-05-23 08:56:35 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -219,6 +219,13 @@ AnimationEffect ImplSdXMLgetEffect( XMLEffect eKind, XMLEffectDirection eDirecti case ED_from_lowerleft: return AnimationEffect_MOVE_FROM_LOWERLEFT; case ED_from_lowerright: return AnimationEffect_MOVE_FROM_LOWERRIGHT; case ED_path: return AnimationEffect_PATH; + case ED_to_top: return AnimationEffect_MOVE_TO_TOP; + case ED_to_right: return AnimationEffect_MOVE_TO_RIGHT; + case ED_to_bottom: return AnimationEffect_MOVE_TO_BOTTOM; + case ED_to_upperleft: return AnimationEffect_MOVE_TO_UPPERLEFT; + case ED_to_upperright: return AnimationEffect_MOVE_TO_UPPERRIGHT; + case ED_to_lowerright: return AnimationEffect_MOVE_TO_LOWERRIGHT; + case ED_to_lowerleft: return AnimationEffect_MOVE_TO_LOWERLEFT; } } return AnimationEffect_MOVE_FROM_LEFT; |