mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-15 16:11:25 +00:00
Uppercase key for interface category lookup
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@17129 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
9a751b48e1
commit
50bd23a4c9
2 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue