Added patch from Wolfgang Lux.

* GormLib/IBObjectAdditions.m: Remove duplicate method implementations
	from here to fix issues on Darwin.



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@26955 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2008-10-23 02:25:48 +00:00
parent 523ef5bf4b
commit a886dcd980
2 changed files with 6 additions and 67 deletions

View file

@ -1,3 +1,9 @@
2008-10-22 22:30-EDT Wolfgang Lux <wolfgang.lux@gmail.com>
Patch committed by: Gregory John Casamento <greg_casamento@yahoo.com>
* GormLib/IBObjectAdditions.m: Remove duplicate method implementations
from here to fix issues on Darwin.
2008-10-19 21:50-EDT Wolfgang Lux <wolfgang.lux@gmail.com>
Patch committed by: Gregory John Casamento <greg_casamento@yahoo.com>

View file

@ -28,16 +28,6 @@
// object additions -- object adopts protocol
@implementation NSObject (IBObjectAdditions)
/**
Returns YES if the reciever can take the
place of the class indicated by origClass,
NO otherwise.
*/
+ (BOOL)canSubstituteForClass: (Class)origClass
{
return YES;
}
/**
This method is called on all objects after
they are loaded into the IBDocuments object.
@ -47,15 +37,6 @@
// does nothing...
}
/**
Used to provide an image which represents the
reciever.
*/
- (NSImage *)imageForViewer
{
return nil;
}
/**
Name for the reciever in the name table.
*/
@ -75,54 +56,6 @@
return [self className];
}
/**
Class name of the attributes inspector for the reciever.
*/
- (NSString*) inspectorClassName
{
return nil;
}
/**
Class name of the connection inspector for the reciever.
*/
- (NSString*) connectInspectorClassName
{
return nil;
}
/**
Class name of the size inspector for the reciever.
*/
- (NSString*) sizeInspectorClassName
{
return nil;
}
/**
Class name of the help inspector for the receiver.
*/
- (NSString*) helpInspectorClassName
{
return nil;
}
/**
Class name of the class inspector for the receiver.
*/
- (NSString*) classInspectorClassName
{
return nil;
}
/**
Class name of the editor
*/
- (NSString*) editorClassName
{
return nil;
}
/**
Lists all properties if this object not compatible with IB.
*/