Index: Palettes/3Containers/GormTableViewEditor.m =================================================================== --- Palettes/3Containers/GormTableViewEditor.m (revision 33000) +++ Palettes/3Containers/GormTableViewEditor.m (working copy) @@ -88,18 +88,18 @@ - (void) scrollToPoint: (NSPoint)point { - if ([_super_view respondsToSelector:@selector(scrollToPoint:)]) + if ([_superview respondsToSelector:@selector(scrollToPoint:)]) { - [(NSClipView *)_super_view scrollToPoint: point]; + [(NSClipView *)_superview scrollToPoint: point]; } } - (NSRect) documentVisibleRect { NSRect visRect = _bounds; - if ([_super_view respondsToSelector:@selector(documentVisibleRect)]) + if ([_superview respondsToSelector:@selector(documentVisibleRect)]) { - visRect = [(NSClipView *)_super_view documentVisibleRect]; + visRect = [(NSClipView *)_superview documentVisibleRect]; } return visRect; } Index: GormCore/NSView+GormExtensions.m =================================================================== --- GormCore/NSView+GormExtensions.m (revision 33000) +++ GormCore/NSView+GormExtensions.m (working copy) @@ -72,11 +72,11 @@ - (void) moveViewToFront: (NSView *)sv { NSDebugLog(@"move to front %@", sv); - if([_sub_views containsObject: sv]) + if([_subviews containsObject: sv]) { RETAIN(sv); // make sure it doesn't deallocate the view. - [_sub_views removeObject: sv]; - [_sub_views addObject: sv]; // add it to the end. + [_subviews removeObject: sv]; + [_subviews addObject: sv]; // add it to the end. RELEASE(sv); } } @@ -88,18 +88,18 @@ - (void) moveViewToBack: (NSView *)sv { NSDebugLog(@"move to back %@", sv); - if([_sub_views containsObject: sv]) + if([_subviews containsObject: sv]) { RETAIN(sv); // make sure it doesn't deallocate the view. - [_sub_views removeObject: sv]; - if([_sub_views count] > 0) + [_subviews removeObject: sv]; + if([_subviews count] > 0) { - [_sub_views insertObject: sv + [_subviews insertObject: sv atIndex: 0]; // add it to the end. } else { - [_sub_views addObject: sv]; + [_subviews addObject: sv]; } RELEASE(sv); } Index: GormCore/GormCustomView.m =================================================================== --- GormCore/GormCustomView.m (revision 33000) +++ GormCore/GormCustomView.m (working copy) @@ -193,7 +193,7 @@ // get the classname... [self setClassName: [customView className]]; - // _super_view = [customView superview]; + // _superview = [customView superview]; // _window = [customView window]; RELEASE(customView);