Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 751931
Collapse All | Expand All

(-)a/src/LEFontInstance.cpp (-1 / +1 lines)
Lines 79-85 void LEFontInstance::mapCharsToGlyphs(const LEUnicode chars[], le_int32 offset, Link Here
79
79
80
LEGlyphID LEFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const
80
LEGlyphID LEFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const
81
{
81
{
82
    return mapCharToGlyph(ch, mapper, TRUE);
82
    return mapCharToGlyph(ch, mapper, true);
83
}
83
}
84
84
85
LEGlyphID LEFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const
85
LEGlyphID LEFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const
(-)a/src/LEGlyphStorage.cpp (-1 / +1 lines)
Lines 659-665 le_bool LEGlyphStorage::applyInsertion(le_int32 atPosition, le_int32 count, LEGl Link Here
659
    // just got replaced by the insertion
659
    // just got replaced by the insertion
660
    fSrcIndex -= 1;
660
    fSrcIndex -= 1;
661
661
662
    return FALSE;
662
    return false;
663
}
663
}
664
664
665
U_NAMESPACE_END
665
U_NAMESPACE_END
(-)a/src/LEInsertionList.cpp (-3 / +2 lines)
Lines 86-96 le_bool LEInsertionList::applyInsertions(LEInsertionCallback *callback) Link Here
86
{
86
{
87
    for (InsertionRecord *rec = head; rec != NULL; rec = rec->next) {
87
    for (InsertionRecord *rec = head; rec != NULL; rec = rec->next) {
88
        if (callback->applyInsertion(rec->position, rec->count, rec->glyphs)) {
88
        if (callback->applyInsertion(rec->position, rec->count, rec->glyphs)) {
89
            return TRUE;
89
            return true;
90
        }
90
        }
91
    }
91
    }
92
92
93
    return FALSE;
93
    return false;
94
}
94
}
95
95
96
U_NAMESPACE_END
96
U_NAMESPACE_END
97
- 

Return to bug 751931