diff options
author | Noel Grandin <noel@peralex.com> | 2016-09-23 13:08:07 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-09-26 08:29:38 +0200 |
commit | 69c29c9f895fa58c923af5e6dee1226f8bbfeceb (patch) | |
tree | 193693f07167525827404d684108677a19f20b75 /sw/source/uibase/shells/txtnum.cxx | |
parent | 594c2b98f8c6c0c03a438e441596ba04e4a66164 (diff) |
convert eNBOType constants to scoped enum
and remove unused constants, which means we can remove the
GraphicBulletsTypeMgr and MixBulletsTypeMgr classes
Change-Id: I395691b48987543355379708e2c60d0de438d72c
Diffstat (limited to 'sw/source/uibase/shells/txtnum.cxx')
-rw-r--r-- | sw/source/uibase/shells/txtnum.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/uibase/shells/txtnum.cxx b/sw/source/uibase/shells/txtnum.cxx index bf159472b88d..fa346dbc9479 100644 --- a/sw/source/uibase/shells/txtnum.cxx +++ b/sw/source/uibase/shells/txtnum.cxx @@ -252,11 +252,11 @@ void SwTextShell::ExecSetNumber(SfxRequest &rReq) if ( pItem != nullptr ) { const sal_uInt16 nChoosenItemIdx = pItem->GetValue(); - sal_uInt16 nNBOType = svx::sidebar::eNBOType::BULLETS; + svx::sidebar::NBOType nNBOType = svx::sidebar::NBOType::Bullets; if ( nSlot == FN_SVX_SET_NUMBER ) - nNBOType = svx::sidebar::eNBOType::NUMBERING; + nNBOType = svx::sidebar::NBOType::Numbering; else if ( nSlot == FN_SVX_SET_OUTLINE ) - nNBOType = svx::sidebar::eNBOType::OUTLINE; + nNBOType = svx::sidebar::NBOType::Outline; svx::sidebar::NBOTypeMgrBase* pNBOTypeMgr = svx::sidebar::NBOutlineTypeMgrFact::CreateInstance( nNBOType ); |