diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-01-14 15:03:45 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-01-14 15:03:45 +0100 |
commit | 6efd3da8a20ec7683d84c3779d6685253dc21746 (patch) | |
tree | 638388c851c8b5afad8e6334a7634f31e8890b0c | |
parent | d9b9a3bffa5ed71e4ecadab863a545515803a183 (diff) |
-Werror=misleading-indentation (GCC 6)
Change-Id: I892dc449bc2e9840ec8dac9c4a1b43961b6c1b07
-rw-r--r-- | sd/source/ui/animations/CustomAnimationPane.cxx | 28 |
1 files changed, 21 insertions, 7 deletions
diff --git a/sd/source/ui/animations/CustomAnimationPane.cxx b/sd/source/ui/animations/CustomAnimationPane.cxx index d512283a475e..3a23d714c56f 100644 --- a/sd/source/ui/animations/CustomAnimationPane.cxx +++ b/sd/source/ui/animations/CustomAnimationPane.cxx @@ -803,13 +803,27 @@ void CustomAnimationPane::onContextMenu( sal_uInt16 nSelectedPopupEntry ) { switch( nSelectedPopupEntry ) { - case CM_WITH_CLICK: onChangeStart( EffectNodeType::ON_CLICK ); break; - case CM_WITH_PREVIOUS: onChangeStart( EffectNodeType::WITH_PREVIOUS ); break; - case CM_AFTER_PREVIOUS: onChangeStart( EffectNodeType::AFTER_PREVIOUS ); break; - case CM_OPTIONS: showOptions(); break; - case CM_DURATION: showOptions("timing"); break; - case CM_REMOVE: onRemove(); break; - case CM_CREATE: if( maViewSelection.hasValue() ) onChange( true ); break; + case CM_WITH_CLICK: + onChangeStart( EffectNodeType::ON_CLICK ); + break; + case CM_WITH_PREVIOUS: + onChangeStart( EffectNodeType::WITH_PREVIOUS ); + break; + case CM_AFTER_PREVIOUS: + onChangeStart( EffectNodeType::AFTER_PREVIOUS ); + break; + case CM_OPTIONS: + showOptions(); + break; + case CM_DURATION: + showOptions("timing"); + break; + case CM_REMOVE: + onRemove(); + break; + case CM_CREATE: + if( maViewSelection.hasValue() ) onChange( true ); + break; } updateControls(); |