From b908ca07b17a69e8bdf77703c42f0985cf9da3d9 Mon Sep 17 00:00:00 2001 From: Gregory John Casamento Date: Sun, 18 May 2008 23:17:31 +0000 Subject: [PATCH] Correction for segfault. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@26540 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 15 ++++++++++++--- GormCore/GormDocument.m | 2 +- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3a13366d..f5e6387b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,8 +1,17 @@ +2008-05-18 19:16-EDT Gregory John Casamento + + * GormCore/GormDocument.m: Correct segfault. Remove unecessary + call to removeFromSuperview for the selection box from + GormDocument window. + 2008-05-18 Fabien Vallon - * Palettes/3Containers/GormTabViewAttributesInspector.h: Add itemPrevious and itemNext outlets - * Palettes/3Containers/GormTabViewInspector.gorm: Add itemPrevious and itemNext outlets - * Palettes/3Containers/GormTabViewInspector.gorm: Implement NSTabView items ordering in ok: + * Palettes/3Containers/GormTabViewAttributesInspector.h: + Add itemPrevious and itemNext outlets + * Palettes/3Containers/GormTabViewInspector.gorm: + Add itemPrevious and itemNext outlets + * Palettes/3Containers/GormTabViewInspector.gorm: + Implement NSTabView items ordering in ok: 2008-05-16 20:47-EDT Gregory John Casamento diff --git a/GormCore/GormDocument.m b/GormCore/GormDocument.m index 1d2239cd..3648190a 100644 --- a/GormCore/GormDocument.m +++ b/GormCore/GormDocument.m @@ -1183,7 +1183,7 @@ static NSImage *fileImage = nil; // [filePrefsWindow close]; // Get rid of the selection box. - [selectionBox removeFromSuperviewWithoutNeedingDisplay]; + // [selectionBox removeFromSuperviewWithoutNeedingDisplay]; RELEASE(classManager); RELEASE(filePrefsManager);