1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-08 04:20:09 +00:00
This commit is contained in:
jules 2007-11-15 13:52:23 +00:00
parent 63524daa7e
commit e09c0ce8e6
9 changed files with 87 additions and 41 deletions

View file

@ -553,9 +553,9 @@ void Typeface::initialiseTypefaceCharacteristics (const String& fontName,
->createTypeface (fontName, bold, italic, *this, addAllGlyphsToFont);
}
void Typeface::findAndAddSystemGlyph (juce_wchar character) throw()
bool Typeface::findAndAddSystemGlyph (juce_wchar character) throw()
{
FreeTypeInterface::getInstance()
return FreeTypeInterface::getInstance()
->addGlyphToFont (character, getName(), isBold(), isItalic(), *this);
}