diff options
author | Noel Grandin <noel@peralex.com> | 2016-05-24 10:23:42 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-05-25 08:19:27 +0000 |
commit | 2a4f9cbf01c8ee4ecf571e4a8b9e121050e7bd95 (patch) | |
tree | 77708ac169f86a1eae4fabcfad1ff69c1fb89e32 /include | |
parent | 8821dc7f3ad75ec5a686952703dec25e16901656 (diff) |
Convert FontHintStyle to scoped enum
Change-Id: I6e59bf8beacc524897aede45420574148c0fecde
Reviewed-on: https://gerrit.libreoffice.org/25397
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/vclenum.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/vclenum.hxx b/include/vcl/vclenum.hxx index 45f9ed29d1ac..8dcafe16dcd1 100644 --- a/include/vcl/vclenum.hxx +++ b/include/vcl/vclenum.hxx @@ -77,7 +77,7 @@ enum FontAutoHint { AUTOHINT_DONTKNOW, AUTOHINT_FALSE, AUTOHINT_TRUE }; enum FontHinting { HINTING_DONTKNOW, HINTING_FALSE, HINTING_TRUE }; -enum FontHintStyle { HINT_NONE, HINT_SLIGHT, HINT_MEDIUM, HINT_FULL }; +enum class FontHintStyle { NONE, Slight, Medium, Full }; typedef sal_uInt32 sal_UCS4; // TODO: this should be moved to rtl |