This commit is contained in:
Steve Checkoway
2006-04-29 09:26:45 +00:00
parent 6869d2f0ba
commit cb4c2f5c53
+2 -2
View File
@@ -81,7 +81,7 @@ static NSMenuItem *MenuItem( NSString *title, SEL action, NSString *code )
return [[[NSMenuItem alloc] initWithTitle:title action:action keyEquivalent:code] autorelease];
}
static void setupMenus( void )
static void SetupMenus( void )
{
// Get the localized strings from the file.
NSString *sWindow = NSLocalizedString( @"Window", @"Menu title" );
@@ -143,7 +143,7 @@ int main( int argc, char **argv )
NSSetUncaughtExceptionHandler( HandleNSException );
// Set up the menubar.
setupMenus();
SetupMenus();
// Create SDLMain and make it the app delegate.
sm = [[SMMain alloc] initWithArgc:argc argv:argv];