[Libreoffice-commits] core.git: vcl/source

David Tardon dtardon at redhat.com
Mon Oct 24 08:10:05 UTC 2016


 vcl/source/gdi/CommonSalLayout.cxx |    9 +++++++++
 1 file changed, 9 insertions(+)

New commits:
commit 38b895cddcff51b6cfb47c6b3bbb2044a6d7a6dd
Author: David Tardon <dtardon at redhat.com>
Date:   Mon Oct 24 10:08:09 2016 +0200

    impl. missing function
    
    This is copied from vcl/unx/generic/glyphs/gcach_layout.cxx .
    
    Change-Id: I778c1c862c80668a06db8e91c11773ecc9916078

diff --git a/vcl/source/gdi/CommonSalLayout.cxx b/vcl/source/gdi/CommonSalLayout.cxx
index 4bd9f60..91d7762 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());


More information about the Libreoffice-commits mailing list