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:
Ludovic Marcotte 2002-04-27 13:59:38 +00:00
parent 0f0c8bd655
commit 076e9f37f5

View file

@ -186,7 +186,7 @@ load_cache(NSString *cacheName, BOOL async)
{
if (load_cache(cache_name(), NO))
{
allFontNames = [[cache objectForKey: @"AllFontNames"] allObjects];
allFontNames = RETAIN([[cache objectForKey: @"AllFontNames"] allObjects]);
allFontFamilies = [cache objectForKey: @"AllFontFamilies"];
// This dictionary stores the XLFD for each font
creationDictionary = [cache objectForKey: @"CreationDictionary"];