mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Several ivar name changes. Method types fixed.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1067 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
e2fb754a73
commit
b13cd50a86
2 changed files with 8 additions and 8 deletions
|
@ -34,9 +34,9 @@
|
|||
{
|
||||
@public
|
||||
struct objc_class *isa;
|
||||
unsigned target;
|
||||
Connection *connection;
|
||||
unsigned retain_count;
|
||||
unsigned _target;
|
||||
Connection *_connection;
|
||||
unsigned _retain_count;
|
||||
#if NeXT_runtime
|
||||
coll_cache_ptr _method_types;
|
||||
Protocol *protocol;
|
||||
|
@ -53,7 +53,7 @@
|
|||
+ (Class) class;
|
||||
#endif
|
||||
|
||||
- invalidateProxy;
|
||||
- (void) invalidateProxy;
|
||||
- (BOOL) isProxy;
|
||||
- (unsigned) targetForProxy;
|
||||
- connectionForProxy;
|
||||
|
|
|
@ -34,9 +34,9 @@
|
|||
{
|
||||
@public
|
||||
struct objc_class *isa;
|
||||
unsigned target;
|
||||
Connection *connection;
|
||||
unsigned retain_count;
|
||||
unsigned _target;
|
||||
Connection *_connection;
|
||||
unsigned _retain_count;
|
||||
#if NeXT_runtime
|
||||
coll_cache_ptr _method_types;
|
||||
Protocol *protocol;
|
||||
|
@ -53,7 +53,7 @@
|
|||
+ (Class) class;
|
||||
#endif
|
||||
|
||||
- invalidateProxy;
|
||||
- (void) invalidateProxy;
|
||||
- (BOOL) isProxy;
|
||||
- (unsigned) targetForProxy;
|
||||
- connectionForProxy;
|
||||
|
|
Loading…
Reference in a new issue