mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
Little tidyup
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@16974 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
59cc452b3e
commit
df9982acf3
2 changed files with 4 additions and 9 deletions
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
* Source/GSString.m: Allow more length when converting unicode
|
* Source/GSString.m: Allow more length when converting unicode
|
||||||
string to integer.
|
string to integer.
|
||||||
|
* Source/NSObject.m: ([methodSignatureForSelector:]) return nil if
|
||||||
|
the receiver does not implement it.
|
||||||
|
|
||||||
2003-06-20 Adam Fedor <fedor@gnu.org>
|
2003-06-20 Adam Fedor <fedor@gnu.org>
|
||||||
|
|
||||||
|
|
|
@ -1250,16 +1250,9 @@ static BOOL double_release_check_enabled = NO;
|
||||||
: class_get_class_method(GSObjCClass(self), aSelector));
|
: class_get_class_method(GSObjCClass(self), aSelector));
|
||||||
if (mth == 0)
|
if (mth == 0)
|
||||||
{
|
{
|
||||||
types = 0;
|
return nil;
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
types = mth->method_types;
|
|
||||||
}
|
|
||||||
if (types == 0)
|
|
||||||
{
|
|
||||||
types = sel_get_type(aSelector);
|
|
||||||
}
|
}
|
||||||
|
types = mth->method_types;
|
||||||
if (types == 0)
|
if (types == 0)
|
||||||
{
|
{
|
||||||
return nil;
|
return nil;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue