From 83ab72efe7dbb9047e89ba2775228b2d81f96bc9 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 22 Apr 2015 14:59:54 +0200 Subject: convert SW_BORDER_MODE constants to scoped enum Change-Id: I7b2e03a5cacf5d2a706ba8e2d3b276fcb3f7e88b --- sw/source/ui/table/tabledlg.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sw/source/ui/table') diff --git a/sw/source/ui/table/tabledlg.cxx b/sw/source/ui/table/tabledlg.cxx index e6636d1b2c5b..c76dc0fe477c 100644 --- a/sw/source/ui/table/tabledlg.cxx +++ b/sw/source/ui/table/tabledlg.cxx @@ -1266,7 +1266,7 @@ void SwTableTabDlg::PageCreated(sal_uInt16 nId, SfxTabPage& rPage) } else if (nId == m_nBorderId) { - aSet.Put (SfxUInt16Item(SID_SWMODE_TYPE,SW_BORDER_MODE_TABLE)); + aSet.Put (SfxUInt16Item(SID_SWMODE_TYPE, static_cast(SwBorderModes::TABLE))); rPage.PageCreated(aSet); } else if (nId == m_nTextFlowId) -- cgit