diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-17 13:49:16 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-08-18 08:49:02 +0200 |
commit | 4a4c1bf4423a8b426c56c8d2b7013d6b5109309e (patch) | |
tree | 979f603a4f19373cb7e0abead4094c196010c927 /include/svx/xenum.hxx | |
parent | a43de3d55bccfd8312dfcafbd387f3e8c7d1c633 (diff) |
convert XFormTextStyle to scoped enum
Change-Id: I88facbbbe262d9e26d2b45703c4f05c71bf51479
Diffstat (limited to 'include/svx/xenum.hxx')
-rw-r--r-- | include/svx/xenum.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/svx/xenum.hxx b/include/svx/xenum.hxx index cc5bb74e8f7d..c17551586f28 100644 --- a/include/svx/xenum.hxx +++ b/include/svx/xenum.hxx @@ -21,8 +21,7 @@ #define INCLUDED_SVX_XENUM_HXX -enum XFormTextStyle { XFT_ROTATE, XFT_UPRIGHT, XFT_SLANTX, XFT_SLANTY, - XFT_NONE }; +enum class XFormTextStyle { Rotate, Upright, SlantX, SlantY, NONE }; enum class XFormTextAdjust { Left, Right, AutoSize, Center }; enum class XFormTextShadow { NONE, Normal, Slant }; enum class XBitmapType { Import, N8x8 }; |