Various bug fixes...

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@14157 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2002-07-16 04:46:12 +00:00
parent 933d1f405a
commit 4a3f42c0e9
3 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,11 @@
2002-07-16 Gregory John Casamento <greg_casamento@yahoo.com>
* GormObjectInspector.m: Removed extra RELEASE at line 93 which
was causing core dump.
* GormTableViewEditor.m: Removed [document detachObject: selected]
since this was deleting the reference in the map to the table when
a column was deleted making connections impossible.
2002-07-14 Gregory John Casamento <greg_casamento@yahoo.com> 2002-07-14 Gregory John Casamento <greg_casamento@yahoo.com>
* GormClassManager.[hm]: Added methods to support deletion of * GormClassManager.[hm]: Added methods to support deletion of

View file

@ -90,7 +90,7 @@ selectCellWithString: (NSString*)title
RELEASE(sets); RELEASE(sets);
RELEASE(types); RELEASE(types);
RELEASE(okButton); RELEASE(okButton);
RELEASE(window); // RELEASE(window);
[super dealloc]; [super dealloc];
} }

View file

@ -160,7 +160,6 @@ static NSColor *_oldColor;
{ {
NSLog(@"FIXME: remove the tableColumn from toplevel"); // FIXME NSLog(@"FIXME: remove the tableColumn from toplevel"); // FIXME
[tableView removeTableColumn: selected]; [tableView removeTableColumn: selected];
[document detachObject: selected];
[tableView deselectAll: self]; [tableView deselectAll: self];
selected = nil; selected = nil;
} }