From 4a3f42c0e953245512f17ab33ceb4071f5ab5ee1 Mon Sep 17 00:00:00 2001 From: Gregory John Casamento Date: Tue, 16 Jul 2002 04:46:12 +0000 Subject: [PATCH] Various bug fixes... git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@14157 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 8 ++++++++ GormObjectInspector.m | 2 +- GormTableViewEditor.m | 1 - 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index ef935c09..92b5d61e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2002-07-16 Gregory John Casamento + + * 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 * GormClassManager.[hm]: Added methods to support deletion of diff --git a/GormObjectInspector.m b/GormObjectInspector.m index 9e42cb4b..03d65836 100644 --- a/GormObjectInspector.m +++ b/GormObjectInspector.m @@ -90,7 +90,7 @@ selectCellWithString: (NSString*)title RELEASE(sets); RELEASE(types); RELEASE(okButton); - RELEASE(window); + // RELEASE(window); [super dealloc]; } diff --git a/GormTableViewEditor.m b/GormTableViewEditor.m index b0a098be..399891ed 100644 --- a/GormTableViewEditor.m +++ b/GormTableViewEditor.m @@ -160,7 +160,6 @@ static NSColor *_oldColor; { NSLog(@"FIXME: remove the tableColumn from toplevel"); // FIXME [tableView removeTableColumn: selected]; - [document detachObject: selected]; [tableView deselectAll: self]; selected = nil; }