mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 03:51:22 +00:00
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:
parent
5a9d3ac8fb
commit
e383a5eec4
3 changed files with 11 additions and 4 deletions
10
ChangeLog
10
ChangeLog
|
@ -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>
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
#include <GormCore/GormPlugin.h>
|
||||
#include <GormCore/GormWrapperLoader.h>
|
||||
#include "GormNibWrapperLoader.h"
|
||||
#include <Foundation/NSArray.h>
|
||||
|
||||
@interface GormNibPlugin : GormPlugin
|
||||
@end
|
||||
|
|
Loading…
Reference in a new issue