diff options
author | Noel Grandin <noel@peralex.com> | 2016-09-23 13:04:05 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-09-26 08:29:38 +0200 |
commit | 594c2b98f8c6c0c03a438e441596ba04e4a66164 (patch) | |
tree | 9594f6c25f9994365bad15607bf46021d89fbc23 /include | |
parent | 0e740b9b07cd3f7b03c875f9a0bfda251bae6cfe (diff) |
convert eNBType to scoped enum
Change-Id: I99340449d99ce6a6b45c91c913357bcdbbb9a946
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/nbdtmg.hxx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/include/svx/nbdtmg.hxx b/include/svx/nbdtmg.hxx index 855f46230b7a..fd0d603eb7f5 100644 --- a/include/svx/nbdtmg.hxx +++ b/include/svx/nbdtmg.hxx @@ -40,12 +40,10 @@ namespace eNBOType const NBOType MIXBULLETS = 0x05; } -typedef sal_uInt16 NBType; -namespace eNBType +enum class NBType { - const NBOType BULLETS = 0x01; - const NBOType GRAPHICBULLETS = 0x02; -} + Bullets = 1, GraphicBullets +}; class SVX_DLLPUBLIC NumSettings_Impl { |