mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 03:51:22 +00:00
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:
parent
f6526cbc54
commit
b3bdb1606c
4 changed files with 14 additions and 10 deletions
|
@ -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
7
Gorm.m
|
@ -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];
|
||||
}
|
||||
|
|
|
@ -267,11 +267,6 @@ static id _sharedDataSource = nil;
|
|||
return self;
|
||||
}
|
||||
|
||||
- (void) awakeFromNib
|
||||
{
|
||||
[super setDataSource: [GormNSOutlineView sharedDataSource]];
|
||||
}
|
||||
|
||||
- (void) setGormAllowsColumnReordering: (BOOL)flag
|
||||
{
|
||||
_gormAllowsColumnReordering = flag;
|
||||
|
|
|
@ -186,11 +186,6 @@ static id _sharedDataSource = nil;
|
|||
return self;
|
||||
}
|
||||
|
||||
- (void) awakeFromNib
|
||||
{
|
||||
[super setDataSource: [GormNSTableView sharedDataSource]];
|
||||
}
|
||||
|
||||
- (void) setGormAllowsColumnReordering: (BOOL)flag
|
||||
{
|
||||
_gormAllowsColumnReordering = flag;
|
||||
|
|
Loading…
Reference in a new issue