diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2016-05-21 19:26:41 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-05-23 07:31:31 +0000 |
commit | 4a98af674c90de499909174af409d0e29cc155e2 (patch) | |
tree | 1b30c08b36349a937cd137c31189840cf9f587d1 /include/drawinglayer/attribute | |
parent | 72ffb6f590293fb8d3ba428f1700dc05703b014f (diff) |
Convert HatchStyle to scoped enum
Change-Id: I27878a67457d32e6922dfb6da73f896ff6ab1d01
Reviewed-on: https://gerrit.libreoffice.org/25271
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/drawinglayer/attribute')
-rw-r--r-- | include/drawinglayer/attribute/fillhatchattribute.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/drawinglayer/attribute/fillhatchattribute.hxx b/include/drawinglayer/attribute/fillhatchattribute.hxx index 58c643b54283..40e350a003f0 100644 --- a/include/drawinglayer/attribute/fillhatchattribute.hxx +++ b/include/drawinglayer/attribute/fillhatchattribute.hxx @@ -39,11 +39,11 @@ namespace drawinglayer { namespace attribute { - enum HatchStyle + enum class HatchStyle { - HATCHSTYLE_SINGLE, - HATCHSTYLE_DOUBLE, - HATCHSTYLE_TRIPLE + Single, + Double, + Triple }; } // end of namespace attribute } // end of namespace drawinglayer |