diff --git a/dialog_unix.go b/dialog_unix.go index ec1a4e1..c3c506c 100644 --- a/dialog_unix.go +++ b/dialog_unix.go @@ -43,7 +43,6 @@ func _msgBox(primarytext string, secondarytext string, msgtype C.GtkMessageType, } 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)) } diff --git a/dialog_windows.go b/dialog_windows.go index 6f22df4..d0a34ab 100644 --- a/dialog_windows.go +++ b/dialog_windows.go @@ -103,7 +103,6 @@ func _msgBox(primarytext string, secondarytext string, uType uint32) (result int } func msgBox(primarytext string, secondarytext string) { - // TODO add an icon? _msgBox(primarytext, secondarytext, _MB_OK) }