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 2002-04-27 13:59:38 +00:00
parent 675b19b08b
commit 674116098e

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"];