* Source/NSDistantObject.m: #ifdef to disable category

on Object was forgotten around the interface


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@31280 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Eric Wasylishen 2010-09-09 22:18:01 +00:00
parent 1bbef96f6a
commit 7282e58e08
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2010-09-09 Eric Wasylishen <ewasylishen@gmail.com>
* Source/NSDistantObject.m: #ifdef to disable category
on Object was forgotten around the interface
2010-09-10 Riccardo Mottola
* Source/unix/GSRunLoopCtxt.m: only access array if port responds to selector, or it is not initialized

View file

@ -67,9 +67,11 @@ static int debug_proxy = 0;
static Class placeHolder = 0;
static Class distantObjectClass = 0;
#ifndef __GNUSTEP_RUNTIME__
@interface Object (NSConformsToProtocolNamed)
- (BOOL) _conformsToProtocolNamed: (const char*)aName;
@end
#endif
@interface NSObject (NSConformsToProtocolNamed)
- (BOOL) _conformsToProtocolNamed: (const char*)aName;
@end