mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
Change sel_getUid to call sel_registerName, in line with OS X behaviour since 10.0
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@31270 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4488708e84
commit
59ba8facf0
2 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
|||
2010-09-09 Eric Wasylishen <ewasylishen@gmail.com>
|
||||
|
||||
* Source/ObjectiveC2/runtime.c:
|
||||
Change sel_getUid to call sel_registerName, in line with OS X behaviour since
|
||||
10.0
|
||||
|
||||
2010-09-02 9avid Chisnall <theraven@gna.org>
|
||||
|
||||
* Source/NSBundle.m
|
||||
|
|
|
@ -1299,9 +1299,7 @@ sel_getType_np(SEL sel)
|
|||
SEL
|
||||
sel_getUid(const char *selName)
|
||||
{
|
||||
if (selName == 0)
|
||||
return 0;
|
||||
return sel_get_uid(selName);
|
||||
return sel_registerName(selName);
|
||||
}
|
||||
|
||||
BOOL
|
||||
|
|
Loading…
Reference in a new issue