summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-05-27 12:06:36 +0100
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2015-05-27 15:39:06 +0200
commit372784b65747d14bb1c76950156d860401088ea9 (patch)
tree2c1130505b095896c1276127a0c9b0be3b180403
parentb0d95a2dbdb052ccc8d3eb5f588fd4d3e7fb65dd (diff)
fix build
Change-Id: Ie620107c7ce3ca7a3235adc296daf964a78f0540 (cherry picked from commit 6234320af092c8191081c19ef29a539496723d24)
-rw-r--r--vcl/generic/glyphs/gcach_layout.cxx2
1 files changed, 1 insertions, 1 deletions
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(' ');
}