summaryrefslogtreecommitdiff
path: root/sw/source/uibase/docvw/edtwin3.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-04-12 14:15:54 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-04-13 09:57:43 +0200
commitf52535f433ddeac304d2b789a65b5031d1c7d1bb (patch)
treed5d365e7891364ada2de96b060cb086e6747aac8 /sw/source/uibase/docvw/edtwin3.cxx
parentd9febd5d725f1a17e7b64e2c44de189144ab4f9c (diff)
convert TableChgMode to scoped enum
Change-Id: Ib667b15a878bb59cdfe80e9692b31afda85ec5b7 Reviewed-on: https://gerrit.libreoffice.org/36475 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source/uibase/docvw/edtwin3.cxx')
-rw-r--r--sw/source/uibase/docvw/edtwin3.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/docvw/edtwin3.cxx b/sw/source/uibase/docvw/edtwin3.cxx
index b059ca314ea2..32c0e3dcb84c 100644
--- a/sw/source/uibase/docvw/edtwin3.cxx
+++ b/sw/source/uibase/docvw/edtwin3.cxx
@@ -109,7 +109,7 @@ bool SwEditWin::RulerMarginDrag( const MouseEvent& rMEvt,
TableChgMode GetTableChgDefaultMode()
{
SwModuleOptions* pOpt = SW_MOD()->GetModuleConfig();
- return pOpt ? pOpt->GetTableMode() : TBLVAR_CHGABS;
+ return pOpt ? pOpt->GetTableMode() : TableChgMode::VarWidthChangeAbs;
}
void RepaintPagePreview( SwViewShell* pVwSh, const SwRect& rRect )