mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-15 18:33:57 +00:00
attempt fix for bug #29910
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@30425 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
83679d7771
commit
b4c85fde93
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2010-05-19 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
|
* Source/Additions/GSObjCRuntime.m: GSObjCMethodNames() fix for
|
||||||
|
bug #29910
|
||||||
|
|
||||||
2010-05-10 Adam Fedor <fedor@gnu.org>
|
2010-05-10 Adam Fedor <fedor@gnu.org>
|
||||||
|
|
||||||
* Fix typos, clarify unstable release documentation
|
* Fix typos, clarify unstable release documentation
|
||||||
|
|
|
@ -273,7 +273,7 @@ GSObjCMethodNames(id obj, BOOL recurse)
|
||||||
NSString *name;
|
NSString *name;
|
||||||
|
|
||||||
name = [[NSString alloc] initWithFormat: @"%s",
|
name = [[NSString alloc] initWithFormat: @"%s",
|
||||||
method_getName(meth[count])];
|
sel_getName(method_getName(meth[count]))];
|
||||||
[set addObject: name];
|
[set addObject: name];
|
||||||
[name release];
|
[name release];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue