From a886dcd980d1ae496865f93059b2dea62ab3b403 Mon Sep 17 00:00:00 2001 From: Gregory John Casamento Date: Thu, 23 Oct 2008 02:25:48 +0000 Subject: [PATCH] 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 --- ChangeLog | 6 ++++ GormLib/IBObjectAdditions.m | 67 ------------------------------------- 2 files changed, 6 insertions(+), 67 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2d773597..75e1ecc4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-10-22 22:30-EDT Wolfgang Lux + Patch committed by: Gregory John Casamento + + * GormLib/IBObjectAdditions.m: Remove duplicate method implementations + from here to fix issues on Darwin. + 2008-10-19 21:50-EDT Wolfgang Lux Patch committed by: Gregory John Casamento diff --git a/GormLib/IBObjectAdditions.m b/GormLib/IBObjectAdditions.m index d828f145..d918fff4 100644 --- a/GormLib/IBObjectAdditions.m +++ b/GormLib/IBObjectAdditions.m @@ -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. */