summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-06-04 23:16:27 -0400
committerPietro Gagliardi <[email protected]>2014-06-04 23:16:27 -0400
commit4e6f6cd1472e1de2c76dbe1ca736be5f911ce846 (patch)
tree164dc04c114bb16a76e7242b68982918344655cf
parent7ee05f826313410c99a04dcd5907b805d8e1ca3e (diff)
More TODOs.
-rw-r--r--dialog.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/dialog.go b/dialog.go
index 5fefd0f..49774aa 100644
--- a/dialog.go
+++ b/dialog.go
@@ -22,11 +22,13 @@ import (
// As with parent == nil, resizing is implementation-defined, but will work properly if allowed. [TODO verify]
// If parent has not yet been created, MsgBox() panics. [TODO check what happens if hidden]
func MsgBox(parent *Window, primaryText string, secondaryText string) {
+ // TODO implement panic after resolving above TODO
msgBox(parent, primaryText, secondaryText)
}
// MsgBoxError displays a message box to the user with just an OK button and an icon indicating an error.
// Otherwise, it behaves like MsgBox.
func MsgBoxError(parent *Window, primaryText string, secondaryText string) {
+ // TODO impelment panic after resolving above TODO
msgBoxError(parent, primaryText, secondaryText)
}