summaryrefslogtreecommitdiff
path: root/include/svx/dstribut_enum.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-08-24 11:54:15 +0200
committerNoel Grandin <noel@peralex.com>2016-08-25 08:40:00 +0200
commitfdaa46f065b52780a5115dbd1e59476bb44e39ab (patch)
tree8a67699602da70dcdc785857f843172b52bfe407 /include/svx/dstribut_enum.hxx
parentb8d03c61dbf8a680a7073d6416a219368fb054b8 (diff)
convert SvxDistributeHorizontal to scoped enum
Change-Id: I7f3592ac8ef90686954624f37394a6e8f047ca44
Diffstat (limited to 'include/svx/dstribut_enum.hxx')
-rw-r--r--include/svx/dstribut_enum.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/svx/dstribut_enum.hxx b/include/svx/dstribut_enum.hxx
index 85315ac72f8f..a69e6f10ecb6 100644
--- a/include/svx/dstribut_enum.hxx
+++ b/include/svx/dstribut_enum.hxx
@@ -19,13 +19,13 @@
#ifndef INCLUDED_SVX_DSTRIBUT_ENUM_HXX
#define INCLUDED_SVX_DSTRIBUT_ENUM_HXX
-enum SvxDistributeHorizontal
+enum class SvxDistributeHorizontal
{
- SvxDistributeHorizontalNone = 0,
- SvxDistributeHorizontalLeft,
- SvxDistributeHorizontalCenter,
- SvxDistributeHorizontalDistance,
- SvxDistributeHorizontalRight
+ NONE = 0,
+ Left,
+ Center,
+ Distance,
+ Right
};
enum class SvxDistributeVertical