X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=DocCheaterDelegate.m;h=d48aa79b8f95c854a1167bc78651594f0d4c1fc0;hb=refs%2Fheads%2Fyishen;hp=2673ae6800dea8fdee260ffdf2be352061e53a54;hpb=d27548f80fe411fda2ee69c74a24eab4292267e9;p=chaz%2Fthecheat diff --git a/DocCheaterDelegate.m b/DocCheaterDelegate.m index 2673ae6..d48aa79 100644 --- a/DocCheaterDelegate.m +++ b/DocCheaterDelegate.m @@ -1,10 +1,14 @@ -// -// DocCheaterDelegate.m -// The Cheat -// -// Created by Chaz McGarvey on 12/26/04. -// Copyright 2004 Chaz McGarvey. All rights reserved. -// + +/* + * The Cheat - The legendary universal game trainer for Mac OS X. + * http://www.brokenzipper.com/trac/wiki/TheCheat + * + * Copyright (c) 2003-2011, Charles McGarvey et al. + * + * Distributable under the terms and conditions of the 2-clause BSD + * license; see the file COPYING for the legal text of the license. + */ + #import "CheatDocument.h" @@ -101,7 +105,7 @@ [_cheater setTarget:selectThis]; } // otherwise, select the global target - else if ( selectThis = [CheatDocument globalTarget] ) { + else if ( (selectThis = [CheatDocument globalTarget]) ) { ChazLog( @"setting global target" ); [_cheater setTarget:selectThis]; } @@ -278,13 +282,10 @@ _status = TCIdleStatus; panel = [NSSavePanel savePanel]; - [panel setRequiredFileType:@"dump"]; + [panel setAllowedFileTypes:[NSArray arrayWithObjects: @"dump", nil]]; [panel setExtensionHidden:NO]; [panel setCanSelectHiddenExtension:YES]; - if ( MacOSXVersion() >= 0x1030 ) { - [panel setMessage:@"Dump files are huge! Exercise patience while saving."]; - } - + [panel setMessage:@"Dump files are huge! Exercise patience while saving."]; [panel beginSheetForDirectory:nil file:[NSString stringWithFormat:[NSString stringWithFormat:@"%@.dump", [_process name]]] modalForWindow:ibWindow