mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +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
e19d14f6c5
commit
c4b2e1fbe1
2 changed files with 4 additions and 9 deletions
|
@ -2,6 +2,8 @@
|
|||
|
||||
* Source/GSString.m: Allow more length when converting unicode
|
||||
string to integer.
|
||||
* Source/NSObject.m: ([methodSignatureForSelector:]) return nil if
|
||||
the receiver does not implement it.
|
||||
|
||||
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));
|
||||
if (mth == 0)
|
||||
{
|
||||
types = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
types = mth->method_types;
|
||||
}
|
||||
if (types == 0)
|
||||
{
|
||||
types = sel_get_type(aSelector);
|
||||
return nil;
|
||||
}
|
||||
types = mth->method_types;
|
||||
if (types == 0)
|
||||
{
|
||||
return nil;
|
||||
|
|
Loading…
Reference in a new issue