mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 03:51:22 +00:00
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:
parent
933d1f405a
commit
4a3f42c0e9
3 changed files with 9 additions and 2 deletions
|
@ -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>
|
||||
|
||||
* GormClassManager.[hm]: Added methods to support deletion of
|
||||
|
|
|
@ -90,7 +90,7 @@ selectCellWithString: (NSString*)title
|
|||
RELEASE(sets);
|
||||
RELEASE(types);
|
||||
RELEASE(okButton);
|
||||
RELEASE(window);
|
||||
// RELEASE(window);
|
||||
[super dealloc];
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue