mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 08:26:27 +00:00
Fixed typo - isEqual: was called isEqualTo:
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@13092 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4604cc395d
commit
6b4a94ae98
1 changed files with 3 additions and 3 deletions
|
@ -267,7 +267,7 @@ loadEntityFunction(const char *url, const char *eid, xmlParserCtxtPtr *ctxt);
|
|||
return self;
|
||||
}
|
||||
|
||||
- (BOOL) isEqualTo: (id)other
|
||||
- (BOOL) isEqual: (id)other
|
||||
{
|
||||
if ([other isKindOfClass: [self class]] == YES
|
||||
&& [other lib] == lib)
|
||||
|
@ -567,7 +567,7 @@ static NSMapTable *nsNames = 0;
|
|||
return self;
|
||||
}
|
||||
|
||||
- (BOOL) isEqualTo: (id)other
|
||||
- (BOOL) isEqual: (id)other
|
||||
{
|
||||
if ([other isKindOfClass: [self class]] == YES && [other lib] == lib)
|
||||
return YES;
|
||||
|
@ -880,7 +880,7 @@ static NSMapTable *nodeNames = 0;
|
|||
return self;
|
||||
}
|
||||
|
||||
- (BOOL) isEqualTo: (id)other
|
||||
- (BOOL) isEqual: (id)other
|
||||
{
|
||||
if ([other isKindOfClass: [self class]] == YES
|
||||
&& [other lib] == lib)
|
||||
|
|
Loading…
Reference in a new issue