mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-29 16:01:38 +00:00
KVO tweaks
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32443 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
6d21d67c23
commit
a949b90b75
3 changed files with 24 additions and 13 deletions
|
@ -1057,11 +1057,12 @@ objc_registerClassPair(Class cls)
|
|||
{
|
||||
return; // Already registered
|
||||
}
|
||||
if (Nil == existing)
|
||||
else if (Nil != existing)
|
||||
{
|
||||
fprintf(stderr, "*** ERROR *** function objc_registerClassPair() called "
|
||||
"for class pair with name ('%s') of existing class.\n",
|
||||
class_getName(cls));
|
||||
return;
|
||||
}
|
||||
|
||||
// Initialize the dispatch table for the class and metaclass.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue