diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-24 10:22:43 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-08-25 08:40:00 +0200 |
commit | ce7eb4c7cbbd48301bbe0c07c42a089271d485d3 (patch) | |
tree | 487c4adcbdd62b70e4ee93b4cce016936778a314 /cui | |
parent | 9e2750f6ac0da27fd4fa799cd449d4df3b07041b (diff) |
convert FrameSelFlags to typed_flags_set
Change-Id: Ia62e4a99a67e1a094be8bf71ce551f88eef0ef5d
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/tabpages/border.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cui/source/tabpages/border.cxx b/cui/source/tabpages/border.cxx index fabe2774dec9..9653c93a7a1c 100644 --- a/cui/source/tabpages/border.cxx +++ b/cui/source/tabpages/border.cxx @@ -271,17 +271,17 @@ SvxBorderTabPage::SvxBorderTabPage(vcl::Window* pParent, const SfxItemSet& rCore lcl_SetDecimalDigitsTo1(*m_pEdShadowSize); } - svx::FrameSelFlags nFlags = svx::FRAMESEL_OUTER; + FrameSelFlags nFlags = FrameSelFlags::Outer; if( mbHorEnabled ) - nFlags |= svx::FRAMESEL_INNER_HOR; + nFlags |= FrameSelFlags::InnerHorizontal; if( mbVerEnabled ) - nFlags |= svx::FRAMESEL_INNER_VER; + nFlags |= FrameSelFlags::InnerVertical; if( mbTLBREnabled ) - nFlags |= svx::FRAMESEL_DIAG_TLBR; + nFlags |= FrameSelFlags::DiagonalTLBR; if( mbBLTREnabled ) - nFlags |= svx::FRAMESEL_DIAG_BLTR; + nFlags |= FrameSelFlags::DiagonalBLTR; if( bIsDontCare ) - nFlags |= svx::FRAMESEL_DONTCARE; + nFlags |= FrameSelFlags::DontCare; m_pFrameSel->Initialize( nFlags ); m_pFrameSel->SetSelectHdl(LINK(this, SvxBorderTabPage, LinesChanged_Impl)); |