diff options
author | Noel Grandin <noel@peralex.com> | 2016-09-01 14:24:14 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-09-05 08:21:46 +0200 |
commit | fcdf143e519778bba1a852fd75b65122ba748f1c (patch) | |
tree | 53f4105423e4590bbaa16d368bb8a3b057e7d99f /include/vcl | |
parent | 4442d226438c1f558021b2df9fe6e540e72cbc7e (diff) |
convert FontHinting to scoped enum
Change-Id: I13ce9e6d50e8d4e087c936bd86e8e96997f020cd
Diffstat (limited to 'include/vcl')
-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 21338f69bcc0..c02adb29bae2 100644 --- a/include/vcl/vclenum.hxx +++ b/include/vcl/vclenum.hxx @@ -75,7 +75,7 @@ enum RasterOp { ROP_OVERPAINT, ROP_XOR, ROP_0, ROP_1, ROP_INVERT }; enum FontAutoHint { AUTOHINT_DONTKNOW, AUTOHINT_FALSE, AUTOHINT_TRUE }; -enum FontHinting { HINTING_DONTKNOW, HINTING_FALSE, HINTING_TRUE }; +enum class FontHinting { DontKnow, No, Yes }; enum class FontHintStyle { NONE, Slight, Medium, Full }; |