diff options
author | David Tardon <dtardon@redhat.com> | 2016-10-24 10:08:09 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2016-10-24 10:09:35 +0200 |
commit | 38b895cddcff51b6cfb47c6b3bbb2044a6d7a6dd (patch) | |
tree | 07c6f69c5b31e982e9004e860131bad460e56b86 | |
parent | 9ad0e56be46df46b021109acfd6ece9d17ce84f8 (diff) |
impl. missing function
This is copied from vcl/unx/generic/glyphs/gcach_layout.cxx .
Change-Id: I778c1c862c80668a06db8e91c11773ecc9916078
-rw-r--r-- | vcl/source/gdi/CommonSalLayout.cxx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/vcl/source/gdi/CommonSalLayout.cxx b/vcl/source/gdi/CommonSalLayout.cxx index 4bd9f605cae0..91d776205e73 100644 --- a/vcl/source/gdi/CommonSalLayout.cxx +++ b/vcl/source/gdi/CommonSalLayout.cxx @@ -104,6 +104,15 @@ static void scaleHbFont(hb_font_t* pHbFont, const FontSelectPattern& aFontSelDat } #if !HB_VERSION_ATLEAST(1, 1, 0) +// Disabled Unicode compatibility decomposition, see fdo#66715 +static unsigned int unicodeDecomposeCompatibility(hb_unicode_funcs_t* /*ufuncs*/, + hb_codepoint_t /*u*/, + hb_codepoint_t* /*decomposed*/, + void* /*user_data*/) +{ + return 0; +} + static hb_unicode_funcs_t* getUnicodeFuncs() { static hb_unicode_funcs_t* ufuncs = hb_unicode_funcs_create(hb_icu_get_unicode_funcs()); |