From 95ad9d9ac84a4439f4eba08041433d423a745ee0 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sun, 15 Jan 2006 12:17:07 +0000 Subject: [PATCH] The 10.4u SDK doesn't contain this method so add it as a category on NSApplication but do not define it. This shuts gcc up and should still work. --- stepmania/PBProject/SMMain.mm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/stepmania/PBProject/SMMain.mm b/stepmania/PBProject/SMMain.mm index d26c1ef9b1..8541d2d94a 100755 --- a/stepmania/PBProject/SMMain.mm +++ b/stepmania/PBProject/SMMain.mm @@ -6,6 +6,10 @@ #include "ProductInfo.h" #include "arch/ArchHooks/ArchHooks.h" +@interface NSApplication (PrivateShutUpWarning) +- (void) setAppleMenu:(NSMenu *)menu; +@end + @interface SMApplication : NSApplication - (void)fullscreen:(id)sender; @end