Switched to NSInformationalAlertStyle for Mac OS X MsgBox() since these aren't specifically warnings.

This commit is contained in:
Pietro Gagliardi 2014-04-25 19:16:38 -04:00
parent 304995b372
commit 194e4971b2
1 changed files with 1 additions and 2 deletions

View File

@ -45,8 +45,7 @@ func _msgBox(primarytext string, secondarytext string, style uintptr, button0 st
}
func msgBox(primarytext string, secondarytext string) {
// TODO _NSInformationalAlertStyle?
_msgBox(primarytext, secondarytext, _NSWarningAlertStyle, "OK")
_msgBox(primarytext, secondarytext, _NSInformationalAlertStyle, "OK")
}
func msgBoxError(primarytext string, secondarytext string) {