From 372784b65747d14bb1c76950156d860401088ea9 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 27 May 2015 12:06:36 +0100 Subject: fix build Change-Id: Ie620107c7ce3ca7a3235adc296daf964a78f0540 (cherry picked from commit 6234320af092c8191081c19ef29a539496723d24) --- vcl/generic/glyphs/gcach_layout.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcl/generic/glyphs/gcach_layout.cxx b/vcl/generic/glyphs/gcach_layout.cxx index c51ee4a9fa2d..af9830c17524 100644 --- a/vcl/generic/glyphs/gcach_layout.cxx +++ b/vcl/generic/glyphs/gcach_layout.cxx @@ -446,7 +446,7 @@ bool HbLayoutEngine::layout(ServerFontLayout& rLayout, ImplLayoutArgs& rArgs) int32_t nCharPos = pHbGlyphInfos[i].cluster; // tdf#89231 if it's just a missing non-breaking space, then use a normal space - if (!nGlyphIndex && (SalLayoutFlags::ForFallback & rArgs.mnFlags) && nCharPos >= 0 && rArgs.mpStr[nCharPos] == 0x202F) + if (!nGlyphIndex && (SAL_LAYOUT_FOR_FALLBACK & rArgs.mnFlags) && nCharPos >= 0 && rArgs.mpStr[nCharPos] == 0x202F) { nGlyphIndex = rFont.GetGlyphIndex(' '); } -- cgit