mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
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:
parent
83182dc218
commit
0a9a42e67b
2 changed files with 3 additions and 1 deletions
|
@ -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>
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue