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:
parent
e759419e62
commit
304995b372
|
@ -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))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue