mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-02-16 08:20:59 +00:00
load markup, not gorm
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@30282 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
01d46e5527
commit
216724f0c0
2 changed files with 12 additions and 3 deletions
|
@ -7,6 +7,7 @@
|
|||
* DBModeler/Inspectors/AttributeInspector.*
|
||||
* DBModeler/Inspectors/GNUmakefile
|
||||
Moved to Renaissance for the Attribute Inspector
|
||||
* EOModeler/EOMInspector.m: load markup, not gorm
|
||||
|
||||
2010-04-29 David Wetzel <dave@turbocat.de>
|
||||
* EOControl/EOMutableKnownKeyDictionary.m
|
||||
|
|
|
@ -161,9 +161,17 @@ static NSMapTable *_inspectorsByClass;
|
|||
|
||||
- (void) load
|
||||
{
|
||||
if (![NSBundle loadNibNamed:NSStringFromClass([self class])
|
||||
owner: self])
|
||||
NSLog(@"failed to load: %@.gorm", NSStringFromClass([self class]));
|
||||
|
||||
if (![NSBundle loadGSMarkupNamed:NSStringFromClass([self class])
|
||||
owner:self])
|
||||
{
|
||||
NSLog(@"failed to load: %@.gsmarkup", NSStringFromClass([self class]));
|
||||
}
|
||||
|
||||
|
||||
// if (![NSBundle loadNibNamed:NSStringFromClass([self class])
|
||||
// owner: self])
|
||||
// NSLog(@"failed to load: %@.gorm", NSStringFromClass([self class]));
|
||||
}
|
||||
|
||||
- (void) unload
|
||||
|
|
Loading…
Reference in a new issue