Fix some bitrot.

I'm not happy with the fix in Controller.m, but I'm not sure what the best
way to fix it is.
This commit is contained in:
Bill Currie 2010-09-12 01:43:03 +09:00
parent 83182dc218
commit 0a9a42e67b
2 changed files with 3 additions and 1 deletions

View file

@ -38,6 +38,7 @@ static const char rcsid[] =
#include <Foundation/NSPathUtilities.h>
#include <Foundation/NSUserDefaults.h>
#include <Foundation/NSValue.h>
#include <Foundation/NSDictionary.h>
#include <AppKit/NSButton.h>
#include <AppKit/NSImage.h>

View file

@ -204,7 +204,8 @@ static const char rcsid[] =
return;
}
[[(id <ForgeBundle>) [aBundle principalClass] alloc] initWithOwner: self];
//[[(id <ForgeBundle>) [aBundle principalClass] alloc] initWithOwner: self];
[[(id ) [aBundle principalClass] alloc] initWithOwner: self];
}
- (PrefsController *) prefsController;