[Libreoffice-commits] core.git: Branch 'libreoffice-4-4' - vcl/generic

Caolán McNamara caolanm at redhat.com
Wed May 27 04:07:41 PDT 2015


 vcl/generic/glyphs/gcach_layout.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 6234320af092c8191081c19ef29a539496723d24
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Wed May 27 12:06:36 2015 +0100

    fix build
    
    Change-Id: Ie620107c7ce3ca7a3235adc296daf964a78f0540

diff --git a/vcl/generic/glyphs/gcach_layout.cxx b/vcl/generic/glyphs/gcach_layout.cxx
index c51ee4a..af9830c 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(' ');
                 }


More information about the Libreoffice-commits mailing list