mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-23 20:01:22 +00:00
Fixed a bug in XGFontManager.m for the allFontNames ivar.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@13550 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
0f0c8bd655
commit
076e9f37f5
1 changed files with 1 additions and 1 deletions
|
@ -186,7 +186,7 @@ load_cache(NSString *cacheName, BOOL async)
|
||||||
{
|
{
|
||||||
if (load_cache(cache_name(), NO))
|
if (load_cache(cache_name(), NO))
|
||||||
{
|
{
|
||||||
allFontNames = [[cache objectForKey: @"AllFontNames"] allObjects];
|
allFontNames = RETAIN([[cache objectForKey: @"AllFontNames"] allObjects]);
|
||||||
allFontFamilies = [cache objectForKey: @"AllFontFamilies"];
|
allFontFamilies = [cache objectForKey: @"AllFontFamilies"];
|
||||||
// This dictionary stores the XLFD for each font
|
// This dictionary stores the XLFD for each font
|
||||||
creationDictionary = [cache objectForKey: @"CreationDictionary"];
|
creationDictionary = [cache objectForKey: @"CreationDictionary"];
|
||||||
|
|
Loading…
Reference in a new issue