diff --git a/ChangeLog b/ChangeLog index 76e771d2..583e76b8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2009-10-13 23:52-EDT Gregory John Casamento + + * GormCore/GormFunctions.m: Temporary change to fix compilation + problem. + * GormCore/GormViewEditor.m: Added code to show id of the object + as a tooltip. + 2009-09-22 16:59-EDT Gregory John Casamento * GormCore/GormViewWithSubviewsEditor.m: Call super instead of diff --git a/GormCore/GormFunctions.m b/GormCore/GormFunctions.m index 8c2e4016..f0ff9970 100644 --- a/GormCore/GormFunctions.m +++ b/GormCore/GormFunctions.m @@ -366,7 +366,7 @@ NSArray *_GSObjCMethodNamesForClass(Class class, BOOL collect) { void *iterator = 0; - while ((methods = class_nextMethodList(class, &iterator))) + while ((methods = NULL)) //class_nextMethodList(class, &iterator))) { int i; diff --git a/GormCore/GormViewEditor.m b/GormCore/GormViewEditor.m index 8e06284f..5f61b04e 100644 --- a/GormCore/GormViewEditor.m +++ b/GormCore/GormViewEditor.m @@ -154,6 +154,7 @@ static BOOL currently_displaying = NO; if (activated == NO) { NSView *superview; + NSString *name = [document nameForObject: _editedObject]; // if the view window is not nil, it's a standalone view... if(viewWindow != nil) @@ -185,7 +186,7 @@ static BOOL currently_displaying = NO; } [self addSubview: _editedObject]; - + [self setToolTip: name]; [[NSNotificationCenter defaultCenter] addObserver: self