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 /sw/source/uibase/fldui | |
parent | eba9e9f88cf518a289e69e676098319177409e60 (diff) |
convert SfxChildAlignment to enum class
Change-Id: I9013bc6dace79421b0a9ad0401a4fb59365d4dcf
Diffstat (limited to 'sw/source/uibase/fldui')
-rw-r--r-- | sw/source/uibase/fldui/fldwrap.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/uibase/fldui/fldwrap.cxx b/sw/source/uibase/fldui/fldwrap.cxx index 2acec8581b41..8e90321f1979 100644 --- a/sw/source/uibase/fldui/fldwrap.cxx +++ b/sw/source/uibase/fldui/fldwrap.cxx @@ -88,7 +88,7 @@ SwFldDlgWrapper::SwFldDlgWrapper( vcl::Window* _pParent, sal_uInt16 nId, pDlgInterface = pDlg; pWindow = pDlg->GetWindow(); pDlg->Start(); - eChildAlignment = SFX_ALIGN_NOALIGNMENT; + eChildAlignment = SfxChildAlignment::NOALIGNMENT; } // newly initialise dialog after Doc switch @@ -136,7 +136,7 @@ SwFldDataOnlyDlgWrapper::SwFldDataOnlyDlgWrapper( vcl::Window* _pParent, sal_uIn pDlg->ActivateDatabasePage(); pDlg->Start(); pDlg->Initialize( pInfo ); - eChildAlignment = SFX_ALIGN_NOALIGNMENT; + eChildAlignment = SfxChildAlignment::NOALIGNMENT; } // re-init after doc activation |