mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-04-23 06:20:47 +00:00
Move type method declaration to superclass.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@26698 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b2bbde6826
commit
08f8fa896c
5 changed files with 10 additions and 3 deletions
|
@ -1,3 +1,11 @@
|
|||
2008-06-24 18:09-EDT Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* GormCore/GormWrapperLoader.h
|
||||
* Plugins/Gorm/GormGormWrapperLoader.h
|
||||
* Plugins/Nib/GormNibPlugin.m: Call type from here.
|
||||
* Plugins/Nib/GormNibWrapperLoader.h: Move type method to super-class
|
||||
declaration.
|
||||
|
||||
2008-05-25 09:09-EDT Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* GormCore/GormObjectEditor.m: Correction for segfault.
|
||||
|
|
|
@ -39,6 +39,7 @@
|
|||
{
|
||||
GormDocument *document;
|
||||
}
|
||||
+ (NSString *) type;
|
||||
- (void) saveSCMDirectory: (NSDictionary *) fileWrappers;
|
||||
@end
|
||||
|
||||
|
|
|
@ -36,7 +36,6 @@
|
|||
id textField;
|
||||
id panel;
|
||||
}
|
||||
+ (NSString *) type;
|
||||
@end
|
||||
|
||||
#endif
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
@implementation GormNibPlugin
|
||||
- (void) didLoad
|
||||
{
|
||||
[self registerDocumentTypeName: @"GSNibFileType"
|
||||
[self registerDocumentTypeName: [GormNibWrapperLoader type]
|
||||
humanReadableName: @"Cocoa Nib"
|
||||
forExtensions: [NSArray arrayWithObjects: @"nib",nil]];
|
||||
}
|
||||
|
|
|
@ -33,7 +33,6 @@
|
|||
NSIBObjectData *container;
|
||||
id nibFilesOwner;
|
||||
}
|
||||
+ (NSString *)type;
|
||||
- (BOOL) isTopLevelObject: (id)obj;
|
||||
@end
|
||||
|
||||
|
|
Loading…
Reference in a new issue