Correction for gcc < 3.x compatibility.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@22003 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2005-11-14 15:00:55 +00:00
parent 720681d60e
commit d70f725da2
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2005-11-14 09:59 Gregory John Casamento <greg_casamento@yahoo.com>
* Palettes/3Containers/GormTabViewEditor.m: Correction to tabView:
shouldSelectTabViewItem: for gcc < 3.x compatibility.
2005-11-13 23:17 Gregory John Casamento <greg_casamento@yahoo.com>
* GormCore/GormCustomClassInspector.m: Correctly handle image/text

View file

@ -155,8 +155,8 @@
- (BOOL) tabView: (NSTabView *)tabView
shouldSelectTabViewItem: (NSTabViewItem *)tabViewItem
{
NSDebugLog(@"shouldSelectTabViewItem called");
id view = [[tabView selectedTabViewItem] view];
NSDebugLog(@"shouldSelectTabViewItem called");
if ([view isKindOfClass: [GormInternalViewEditor class]])
{
NSDebugLog(@"closing tabviewitem");