Fix for compilation error.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@26571 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2008-05-25 13:10:00 +00:00
parent 5a9d3ac8fb
commit e383a5eec4
3 changed files with 11 additions and 4 deletions

View file

@ -1,7 +1,13 @@
2008-05-25 09:09-EDT Gregory John Casamento <greg_casamento@yahoo.com>
* GormCore/GormObjectEditor.m: Correction for segfault.
* Plugins/Nib/GormNibPlugin.m: Correction for compilation error
on gcc < 3.1 systems.
2008-05-20 fabien <fabien@sonappart.net>
* GormCore/GormObjectEditor.m: add draggingExited: to implement autoscrolling
during IBAction connections.
* GormCore/GormObjectEditor.m: add draggingExited: to implement
autoscrolling during IBAction connections.
2008-05-18 19:16-EDT Gregory John Casamento <greg_casamento@yahoo.com>

View file

@ -409,9 +409,9 @@ static NSMapTable *docMap = 0;
- (void) close
{
[super close];
// [super close];
[[NSNotificationCenter defaultCenter] removeObserver: self];
NSMapRemove(docMap,document);
// NSMapRemove(docMap,document);
}
- (void) makeSelectionVisible: (BOOL)flag

View file

@ -24,6 +24,7 @@
#include <GormCore/GormPlugin.h>
#include <GormCore/GormWrapperLoader.h>
#include "GormNibWrapperLoader.h"
#include <Foundation/NSArray.h>
@interface GormNibPlugin : GormPlugin
@end