summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKhaled Hosny <khaledhosny@eglug.org>2016-11-24 01:12:17 +0200
committerAshod Nakashian <ashod.nakashian@collabora.co.uk>2017-12-18 01:08:16 -0500
commitc06bb50a842e7681fb9c1325746cec92232f711c (patch)
tree9a319319c3d652f6a4b1f6c2a518eee3dd02a529 /include
parentc54fef1a7cf17a12804f4fcf4ccfe042cfe8bb2c (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> (cherry picked from commit 8c173ce9ba4d90770cd85b148fe3122a097396a7) (cherry picked from commit c8faf047b50d0661e943f522b1a9777c1e81347d)
Diffstat (limited to 'include')
-rw-r--r--include/vcl/outdev.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx
index d00260781468..5e71bf1dcab9 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;