diff options
author | Noel Grandin <noel@peralex.com> | 2016-09-01 14:30:59 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-09-05 08:21:46 +0200 |
commit | 8c5d90adaf1813c8f3a65487044b8fbe80f8bc85 (patch) | |
tree | 3745bb752cb38d61e2818f351c55770a74a19afd /include/vcl/vclenum.hxx | |
parent | fcdf143e519778bba1a852fd75b65122ba748f1c (diff) |
convert FontAutoHint to scoped enum
Change-Id: Ie60f2e94e178ab7ed292b20da88fb5958662a041
Diffstat (limited to 'include/vcl/vclenum.hxx')
-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 c02adb29bae2..b80fd4109851 100644 --- a/include/vcl/vclenum.hxx +++ b/include/vcl/vclenum.hxx @@ -73,7 +73,7 @@ enum LineStyle enum RasterOp { ROP_OVERPAINT, ROP_XOR, ROP_0, ROP_1, ROP_INVERT }; -enum FontAutoHint { AUTOHINT_DONTKNOW, AUTOHINT_FALSE, AUTOHINT_TRUE }; +enum class FontAutoHint { DontKnow, No, Yes }; enum class FontHinting { DontKnow, No, Yes }; |