From cb7ede2d9970a4d162dc71922f578922c0d6235a Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 7 Oct 2014 16:08:25 +0200 Subject: convert vcl StateChangedType to enum class Change-Id: Ifa46523619ae7fb8d112525b8df594836e51bb8f Reviewed-on: https://gerrit.libreoffice.org/11843 Tested-by: LibreOffice gerrit bot Reviewed-by: Noel Grandin --- sd/source/ui/animations/CustomAnimationPane.cxx | 2 +- sd/source/ui/dlg/PaneDockingWindow.cxx | 10 +++++++--- 2 files changed, 8 insertions(+), 4 deletions(-) (limited to 'sd') diff --git a/sd/source/ui/animations/CustomAnimationPane.cxx b/sd/source/ui/animations/CustomAnimationPane.cxx index 0c29199b3302..96465a4ff93a 100644 --- a/sd/source/ui/animations/CustomAnimationPane.cxx +++ b/sd/source/ui/animations/CustomAnimationPane.cxx @@ -253,7 +253,7 @@ void CustomAnimationPane::StateChanged( StateChangedType nStateChange ) { Control::StateChanged( nStateChange ); - if( nStateChange == STATE_CHANGE_VISIBLE ) + if( nStateChange == StateChangedType::VISIBLE ) updateMotionPathTags(); } diff --git a/sd/source/ui/dlg/PaneDockingWindow.cxx b/sd/source/ui/dlg/PaneDockingWindow.cxx index cc2dd553bcc4..286f3e1a28c6 100644 --- a/sd/source/ui/dlg/PaneDockingWindow.cxx +++ b/sd/source/ui/dlg/PaneDockingWindow.cxx @@ -53,12 +53,13 @@ void PaneDockingWindow::StateChanged( StateChangedType nType ) { switch (nType) { - case STATE_CHANGE_INITSHOW: + case StateChangedType::INITSHOW: Resize(); GetContentWindow().SetStyle(GetContentWindow().GetStyle() | WB_DIALOGCONTROL); break; - case STATE_CHANGE_VISIBLE: + case StateChangedType::VISIBLE: + { // The visibility of the docking window has changed. Tell the // ConfigurationController so that it can activate or deactivate // a/the view for the pane. @@ -70,7 +71,10 @@ void PaneDockingWindow::StateChanged( StateChangedType nType ) { framework::FrameworkHelper::Instance(*pBase)->UpdateConfiguration(); } - break; + } + break; + + default:; } SfxDockingWindow::StateChanged (nType); } -- cgit