summaryrefslogtreecommitdiff
path: root/sc/source/ui/styleui
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-04-22 15:14:53 +0200
committerNoel Grandin <noel@peralex.com>2015-04-29 10:41:38 +0200
commitab1b535fb049f4b6354561e60eb027b4cc691a6c (patch)
tree291a885c0b57cde97bbb8daafba1ca70ca07cce6 /sc/source/ui/styleui
parent83ab72efe7dbb9047e89ba2775228b2d81f96bc9 (diff)
convert SVX_ flags to scoped enum
Change-Id: I6ca73a459597f06fc301a12d6556775a77a7c4c7
Diffstat (limited to 'sc/source/ui/styleui')
-rw-r--r--sc/source/ui/styleui/styledlg.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/styleui/styledlg.cxx b/sc/source/ui/styleui/styledlg.cxx
index fc72ca45d783..bb5ced1d9a22 100644
--- a/sc/source/ui/styleui/styledlg.cxx
+++ b/sc/source/ui/styleui/styledlg.cxx
@@ -167,7 +167,7 @@ void ScStyleDlg::PageCreated( sal_uInt16 nPageId, SfxTabPage& rTabPage )
}
else if (nPageId == m_nBackgroundId)
{
- aSet.Put (SfxUInt32Item(SID_FLAG_TYPE, SVX_SHOW_SELECTOR));
+ aSet.Put (SfxUInt32Item(SID_FLAG_TYPE, static_cast<sal_uInt32>(SvxBackgroundTabFlags::SHOW_SELECTOR)));
rTabPage.PageCreated(aSet);
}
}