summaryrefslogtreecommitdiff
path: root/include/editeng/svxenum.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-03-08 12:39:34 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-03-09 07:25:29 +0000
commit9b95093950436caebd45a06008929427869844fa (patch)
treeb5d08ffb144c208b5b6135258e0ca0a48b28acf7 /include/editeng/svxenum.hxx
parent967d0089a16ad236a0fb9f5bba7fafd2327745a9 (diff)
convert SvxCellHorJustify to scoped enum
Change-Id: I0dd88b5bf9e1aededfa2d94b6b2d3d26694fff33 Reviewed-on: https://gerrit.libreoffice.org/34968 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/editeng/svxenum.hxx')
-rw-r--r--include/editeng/svxenum.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/editeng/svxenum.hxx b/include/editeng/svxenum.hxx
index cfca47018ea3..5cf21d807a02 100644
--- a/include/editeng/svxenum.hxx
+++ b/include/editeng/svxenum.hxx
@@ -96,14 +96,14 @@ enum class SvxBreak
End
};
-enum SvxCellHorJustify
+enum class SvxCellHorJustify
{
- SVX_HOR_JUSTIFY_STANDARD,
- SVX_HOR_JUSTIFY_LEFT,
- SVX_HOR_JUSTIFY_CENTER,
- SVX_HOR_JUSTIFY_RIGHT,
- SVX_HOR_JUSTIFY_BLOCK,
- SVX_HOR_JUSTIFY_REPEAT
+ Standard,
+ Left,
+ Center,
+ Right,
+ Block,
+ Repeat
};
enum class SvxCellJustifyMethod