From d52add4486f079026ada9736ded73e61b2307991 Mon Sep 17 00:00:00 2001 From: Aaron van Geffen Date: Thu, 22 Sep 2016 22:20:42 +0200 Subject: [PATCH] Removed reference to deprecated NSWarningAlertStyle. --- src/platform/macos.m | 1 - 1 file changed, 1 deletion(-) diff --git a/src/platform/macos.m b/src/platform/macos.m index 0220344f9e..12bc0b1219 100644 --- a/src/platform/macos.m +++ b/src/platform/macos.m @@ -104,7 +104,6 @@ void platform_show_messagebox(char *message) NSAlert *alert = [[[NSAlert alloc] init] autorelease]; [alert addButtonWithTitle:@"OK"]; alert.messageText = [NSString stringWithUTF8String:message]; - alert.alertStyle = NSWarningAlertStyle; [alert runModal]; } }