Corrected issue with testing.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@21433 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2005-07-08 17:32:06 +00:00
parent f6526cbc54
commit b3bdb1606c
4 changed files with 14 additions and 10 deletions

View file

@ -1,3 +1,10 @@
2005-07-08 13:34 Gregory John Casamento <greg_casamento@yahoo.com>
* Gorm.m: Correction for problem with testing with tables and outline
views in testInterface.
* Palettes/3Containers/GormNSOutlineView.m: Removed awakeFromNib
* Palettes/3Containers/GormNSTableView.m: ditto.
2005-07-08 04:36 Gregory John Casamento <greg_casamento@yahoo.com>
* GormCore/GormCustomClassInspector.m: In

7
Gorm.m
View file

@ -592,6 +592,13 @@
while((subClassName = [en nextObject]) != nil)
{
NSString *realClassName = [substituteClasses objectForKey: subClassName];
if([realClassName isEqualToString: @"NSTableView"] ||
[realClassName isEqualToString: @"NSOutlineView"])
{
continue;
}
[archiver encodeClassName: subClassName
intoClassName: realClassName];
}

View file

@ -267,11 +267,6 @@ static id _sharedDataSource = nil;
return self;
}
- (void) awakeFromNib
{
[super setDataSource: [GormNSOutlineView sharedDataSource]];
}
- (void) setGormAllowsColumnReordering: (BOOL)flag
{
_gormAllowsColumnReordering = flag;

View file

@ -186,11 +186,6 @@ static id _sharedDataSource = nil;
return self;
}
- (void) awakeFromNib
{
[super setDataSource: [GormNSTableView sharedDataSource]];
}
- (void) setGormAllowsColumnReordering: (BOOL)flag
{
_gormAllowsColumnReordering = flag;