# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1303825485 0 # Node ID 4be0c9f963f8d0d1c54af514f2bc18bc9e3b7ed4 # Parent 114729f5aedc0180f7d4bd47be88d28bef5adf26 Implement informational messagebox style on the Mac. diff -r 114729f5aedc -r 4be0c9f963f8 mac/dw.m --- a/mac/dw.m Tue Apr 26 10:45:21 2011 +0000 +++ b/mac/dw.m Tue Apr 26 13:44:45 2011 +0000 @@ -2742,7 +2742,15 @@ iResponse = (int) NSRunCriticalAlertPanel([ NSString stringWithUTF8String:title ], [ NSString stringWithUTF8String:outbuf ], - button1, button2, button3); } + button1, button2, button3); + } + else if(flags & DW_MB_INFORMATION) + { + iResponse = (int) + NSRunInformationalAlertPanel([ NSString stringWithUTF8String:title ], + [ NSString stringWithUTF8String:outbuf ], + button1, button2, button3); + } else { iResponse = (int)