Decided not to show an icon in the regular MsgBox() on Windows and Unix. For Mac OS X I need to see what the difference between Warning and Informational is.

This commit is contained in:
Pietro Gagliardi 2014-04-25 18:39:43 -04:00
parent e759419e62
commit 304995b372
2 changed files with 0 additions and 2 deletions

View File

@ -43,7 +43,6 @@ func _msgBox(primarytext string, secondarytext string, msgtype C.GtkMessageType,
} }
func msgBox(primarytext string, secondarytext string) { func msgBox(primarytext string, secondarytext string) {
// TODO add an icon?
_msgBox(primarytext, secondarytext, C.GtkMessageType(C.GTK_MESSAGE_OTHER), C.GtkButtonsType(C.GTK_BUTTONS_OK)) _msgBox(primarytext, secondarytext, C.GtkMessageType(C.GTK_MESSAGE_OTHER), C.GtkButtonsType(C.GTK_BUTTONS_OK))
} }

View File

@ -103,7 +103,6 @@ func _msgBox(primarytext string, secondarytext string, uType uint32) (result int
} }
func msgBox(primarytext string, secondarytext string) { func msgBox(primarytext string, secondarytext string) {
// TODO add an icon?
_msgBox(primarytext, secondarytext, _MB_OK) _msgBox(primarytext, secondarytext, _MB_OK)
} }