mirror of
https://github.com/kanjitalk755/macemu.git
synced 2024-12-25 02:29:49 +00:00
Some more 10.4 fixes by Kirk Kerekes
This commit is contained in:
parent
5f7021a179
commit
110318fb69
@ -131,7 +131,7 @@ extern string UserPrefsPath; // from prefs_unix.cpp
|
||||
edited = NO;
|
||||
|
||||
devs = @"/dev";
|
||||
home = NSHomeDirectory();
|
||||
home = [NSHomeDirectory() retain];
|
||||
volsDS = [TableDS new];
|
||||
SCSIds = [TableDS new];
|
||||
|
||||
@ -140,10 +140,9 @@ extern string UserPrefsPath; // from prefs_unix.cpp
|
||||
NSLog (@"%s - Can't create NSImageCell?", __PRETTY_FUNCTION__);
|
||||
|
||||
blank = [NSImage new];
|
||||
locked = [NSImage alloc];
|
||||
if ( [locked initWithContentsOfFile:
|
||||
[[NSBundle mainBundle]
|
||||
pathForImageResource: @"nowrite.icns"]] == nil )
|
||||
locked = [[NSImage alloc] initWithContentsOfFile:
|
||||
[[NSBundle mainBundle] pathForImageResource: @"nowrite.icns"]];
|
||||
if (locked == nil )
|
||||
NSLog(@"%s - Couldn't open write protection image", __PRETTY_FUNCTION__);
|
||||
|
||||
return self;
|
||||
@ -151,11 +150,11 @@ extern string UserPrefsPath; // from prefs_unix.cpp
|
||||
|
||||
- (void) dealloc
|
||||
{
|
||||
[volsDS dealloc];
|
||||
[SCSIds dealloc];
|
||||
[lockCell dealloc];
|
||||
[locked dealloc];
|
||||
[blank dealloc];
|
||||
[volsDS release];
|
||||
[SCSIds release];
|
||||
[lockCell release];
|
||||
[blank release];
|
||||
[locked release];
|
||||
[super dealloc];
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user