diff options
author | Thorsten Behrens <thb@documentfoundation.org> | 2014-05-28 00:48:49 +0200 |
---|---|---|
committer | Thorsten Behrens <thb@documentfoundation.org> | 2014-05-28 00:51:23 +0200 |
commit | b3911e8adb34c6ee72577e58658b2cb72c6e79a3 (patch) | |
tree | b06ac67214efcc72ff0e27ae3c11c8aea182c75d /vcl | |
parent | 35a81048ca2c11d0a1092d8178e070127fd5711b (diff) |
Fix build to work with older harfbuzz versions.
Whee, seems hb has changed naming, with 0.9.11 it is spelled as
quoted. newer versions have a mapping in hb-deprecated.h ...
Change-Id: I425ded33e6b9928aadca9f6988437a021fcecbfb
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/generic/glyphs/gcach_layout.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/generic/glyphs/gcach_layout.cxx b/vcl/generic/glyphs/gcach_layout.cxx index cbf3f9c159d5..3f065bb0ee1d 100644 --- a/vcl/generic/glyphs/gcach_layout.cxx +++ b/vcl/generic/glyphs/gcach_layout.cxx @@ -420,7 +420,7 @@ bool HbLayoutEngine::layout(ServerFontLayout& rLayout, ImplLayoutArgs& rArgs) static hb_unicode_funcs_t* pHbUnicodeFuncs = getUnicodeFuncs(); - int nHbFlags = HB_BUFFER_FLAG_DEFAULT; + int nHbFlags = HB_BUFFER_FLAGS_DEFAULT; if (nMinRunPos == 0) nHbFlags |= HB_BUFFER_FLAG_BOT; /* Beginning-of-text */ if (nEndRunPos == rArgs.mnLength) |