# HG changeset patch # User Sam Lantinga # Date 1147316919 0 # Node ID 41ab83bec62ff0b2e3e52a480bd25579e4d9713e # Parent 3e5029051a6df49b7b788687ad73a2b455cc27b2 Date: Wed, 10 May 2006 17:43:21 -0700 From: Eric Wing Subject: Re: Updated tarball Attached are additional cleanups to SDLMain.m for the files in src/ main/macosx. It looks like somebody already cleaned up most of the issues. There is one about the class interfaces being empty which didn't look easy to fix in a meaningful way so I left them. diff -r 3e5029051a6d -r 41ab83bec62f src/main/macosx/SDLMain.m --- a/src/main/macosx/SDLMain.m Wed May 10 15:21:14 2006 +0000 +++ b/src/main/macosx/SDLMain.m Thu May 11 03:08:39 2006 +0000 @@ -252,19 +252,24 @@ */ - (BOOL)application:(NSApplication *)theApplication openFile:(NSString *)filename { + const char *temparg; + size_t arglen; + char *arg; + char **newargv; + if (!gFinderLaunch) /* MacOS is passing command line args. */ return FALSE; if (gCalledAppMainline) /* app has started, ignore this document. */ return FALSE; - const char *temparg = [filename UTF8String]; - size_t arglen = SDL_strlen(temparg) + 1; - char *arg = (char *) SDL_malloc(arglen); + temparg = [filename UTF8String]; + arglen = SDL_strlen(temparg) + 1; + arg = (char *) SDL_malloc(arglen); if (arg == NULL) return FALSE; - char **newargv = (char **) realloc(gArgv, sizeof (char *) * (gArgc + 2)); + newargv = (char **) realloc(gArgv, sizeof (char *) * (gArgc + 2)); if (newargv == NULL) { SDL_free(arg); @@ -376,3 +381,4 @@ #endif return 0; } +