Using uppercase string for key comparison

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/branches/RELEASE_0_3_5@17126 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Philippe C.D. Robert 2003-07-05 11:58:52 +00:00
parent f731660180
commit 7141180f32
2 changed files with 5 additions and 1 deletions

View file

@ -1,4 +1,8 @@
2003-07-05 Philippe C.D. Robert <probert@siggraph.org>
* Uppercase key for interface category lookup: PCFileManager.m
2003-07-04 Philippe C.D. Robert <probert@siggraph.org>
* Updated TODO, ANNOUNCE, README and INSTALL files

View file

@ -127,7 +127,7 @@ static PCFileManager *_mgr = nil;
title = [[[project rootCategories] allKeysForObject:key] objectAtIndex:0];
title = [NSString stringWithFormat:@"Add to %@...",title];
types = [project fileExtensionsForCategory:key];
types = [project fileExtensionsForCategory:[key uppercaseString]];
openPanel = [NSOpenPanel openPanel];
[openPanel setAllowsMultipleSelection:YES];