diff options
author | Noel Grandin <noel@peralex.com> | 2015-03-23 12:44:45 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-03-24 09:36:56 +0200 |
commit | ffcfcd76d12a54e8a65a2b8d0ba7432d4c57f6ea (patch) | |
tree | 907e2824a4cb8423bef30382753bf78a987e2438 /sd | |
parent | eba9e9f88cf518a289e69e676098319177409e60 (diff) |
convert SfxChildAlignment to enum class
Change-Id: I9013bc6dace79421b0a9ad0401a4fb59365d4dcf
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/dlg/AnimationChildWindow.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/dlg/PaneChildWindows.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/dlg/AnimationChildWindow.cxx b/sd/source/ui/dlg/AnimationChildWindow.cxx index 7dc2d6983d78..7e7ec61574db 100644 --- a/sd/source/ui/dlg/AnimationChildWindow.cxx +++ b/sd/source/ui/dlg/AnimationChildWindow.cxx @@ -42,7 +42,7 @@ AnimationChildWindow::AnimationChildWindow( AnimationWindow* pAnimWin = new AnimationWindow(pBindings, this, _pParent); pWindow = pAnimWin; - eChildAlignment = SFX_ALIGN_NOALIGNMENT; + eChildAlignment = SfxChildAlignment::NOALIGNMENT; pAnimWin->Initialize( pInfo ); diff --git a/sd/source/ui/dlg/PaneChildWindows.cxx b/sd/source/ui/dlg/PaneChildWindows.cxx index 89a5b652cedc..15908461a011 100644 --- a/sd/source/ui/dlg/PaneChildWindows.cxx +++ b/sd/source/ui/dlg/PaneChildWindows.cxx @@ -95,7 +95,7 @@ LeftPaneImpressChildWindow::LeftPaneImpressChildWindow ( pBindings, pInfo, STR_LEFT_PANE_IMPRESS_TITLE, - SFX_ALIGN_LEFT) + SfxChildAlignment::LEFT) { } @@ -111,7 +111,7 @@ LeftPaneDrawChildWindow::LeftPaneDrawChildWindow ( pBindings, pInfo, STR_LEFT_PANE_DRAW_TITLE, - SFX_ALIGN_LEFT) + SfxChildAlignment::LEFT) { } |