diff options
author | Zolnai Tamás <tamas.zolnai@collabora.com> | 2014-04-14 12:14:48 +0200 |
---|---|---|
committer | Zolnai Tamás <tamas.zolnai@collabora.com> | 2014-04-15 21:36:35 +0200 |
commit | 81e98150cc04ad764abc668dc12b91d3de90369e (patch) | |
tree | 6c8fc2fd5cafdb33946195d96b3fee3910eba9a9 /sd/source | |
parent | 176740172a1c9fd5ce9cc28d6fdcc89d3319f606 (diff) |
Slideshow: Fix regression related to media animations
Misc effects tab page animations were lost.
Regression from
9695f38ca4ab26b40524f2eade98c45f0360131d.
Change-Id: I81f7321d7dd87f5b0f6b4acbecbd60241ab1e430
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/ui/animations/CustomAnimationCreateDialog.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/animations/CustomAnimationCreateDialog.cxx b/sd/source/ui/animations/CustomAnimationCreateDialog.cxx index c56f938e67c4..97d7aaa66ac9 100644 --- a/sd/source/ui/animations/CustomAnimationCreateDialog.cxx +++ b/sd/source/ui/animations/CustomAnimationCreateDialog.cxx @@ -570,7 +570,7 @@ CustomAnimationCreateTabPage* CustomAnimationCreateDialog::getCurrentPage() cons { sal_Int16 curPageId = mpTabControl->GetCurPageId(); - for( sal_uInt16 i = ENTRANCE; i <= MOTIONPATH; i++ ) + for( sal_uInt16 i = ENTRANCE; i <= MISCEFFECTS; i++ ) { if( mpTabPages[i]->getId() == curPageId ) return mpTabPages[i]; |