diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-09-14 11:48:29 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-09-15 07:58:45 +0200 |
commit | 54e608c6605ca2bcfd8dfdbe674d5110a18d2c5c (patch) | |
tree | 0ac2df642d3499930f90b7b073cfcb52f44e6eaf /sw | |
parent | 8d0fbad1e08368bd0b6ff76798c779ac7e747cfc (diff) |
convert SvxCellVerJustify to scoped enum
Change-Id: I9d1cdb4ddfee43b7a0990624d7d16e06679343c4
Reviewed-on: https://gerrit.libreoffice.org/42276
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/qa/core/uwriter.cxx | 2 | ||||
-rw-r--r-- | sw/source/core/doc/tblafmt.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sw/qa/core/uwriter.cxx b/sw/qa/core/uwriter.cxx index 76dbb783faf3..f2c0fa9e170d 100644 --- a/sw/qa/core/uwriter.cxx +++ b/sw/qa/core/uwriter.cxx @@ -1250,7 +1250,7 @@ void SwDocTest::testTableAutoFormats() SvxHorJustifyItem aHJustify( SvxCellHorJustify::Center, 0 ); aBoxAF.m_aHorJustify = aHJustify; //Set m_aVerJustify - SvxVerJustifyItem aVJustify( SVX_VER_JUSTIFY_CENTER , 0 ); + SvxVerJustifyItem aVJustify( SvxCellVerJustify::Center , 0 ); aBoxAF.m_aVerJustify = aVJustify; //Set m_aStacked aBoxAF.m_aStacked.SetValue( true ); diff --git a/sw/source/core/doc/tblafmt.cxx b/sw/source/core/doc/tblafmt.cxx index a0a8a1ee25bc..4c66817309de 100644 --- a/sw/source/core/doc/tblafmt.cxx +++ b/sw/source/core/doc/tblafmt.cxx @@ -291,7 +291,7 @@ SwBoxAutoFormat::SwBoxAutoFormat() m_aTextOrientation(SvxFrameDirection::Environment, RES_FRAMEDIR), m_aVerticalAlignment(0, css::text::VertOrientation::NONE, css::text::RelOrientation::FRAME), m_aHorJustify( SvxCellHorJustify::Standard, 0), - m_aVerJustify( SVX_VER_JUSTIFY_STANDARD, 0), + m_aVerJustify( SvxCellVerJustify::Standard, 0), m_aStacked( 0 ), m_aMargin( 0 ), m_aLinebreak( 0 ), |