diff options
author | Khaled Hosny <khaledhosny@eglug.org> | 2016-11-24 01:12:17 +0200 |
---|---|---|
committer | Khaled Hosny <khaledhosny@eglug.org> | 2016-11-26 10:57:07 +0000 |
commit | 8c173ce9ba4d90770cd85b148fe3122a097396a7 (patch) | |
tree | 90b9534e5f6a1d00767560f4ab8184e9fe9e07a2 /include | |
parent | 0a2a7436b4041bb34b01a183b9264af8488d1af3 (diff) |
DisableGlyphProcessing flag is never set now
Change-Id: I4a56c5d7490dd78f5cb72f2b821fb43c93f64b2d
Reviewed-on: https://gerrit.libreoffice.org/31223
Reviewed-by: Khaled Hosny <khaledhosny@eglug.org>
Tested-by: Khaled Hosny <khaledhosny@eglug.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/outdev.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx index 0088136ca734..2403fc9f87d7 100644 --- a/include/vcl/outdev.hxx +++ b/include/vcl/outdev.hxx @@ -141,13 +141,12 @@ enum class SalLayoutFlags EnableLigatures = 0x0200, SubstituteDigits = 0x0400, KashidaJustification = 0x0800, - DisableGlyphProcessing = 0x1000, ForFallback = 0x2000, DrawBullet = 0x4000, }; namespace o3tl { - template<> struct typed_flags<SalLayoutFlags> : is_typed_flags<SalLayoutFlags, 0x7f77> {}; + template<> struct typed_flags<SalLayoutFlags> : is_typed_flags<SalLayoutFlags, 0x6f77> {}; } typedef std::vector< Rectangle > MetricVector; |