mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-29 16:01:38 +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
|
||||
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…
Add table
Add a link
Reference in a new issue