summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-04-28 02:15:19 -0400
committerPietro Gagliardi <[email protected]>2014-04-28 02:15:19 -0400
commit4452de9a07338cd9876bbb351b1b8f9ea5412b27 (patch)
tree75213c05f5f2f59e8643b1bc7646fa6f956f21b7
parent34c84ce659d2c13bd603a8d77bbb3a98ee49128a (diff)
Removed a TODO from init.go that was already in the future plans document.
-rw-r--r--init.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/init.go b/init.go
index 8b9d9ba..ed54206 100644
--- a/init.go
+++ b/init.go
@@ -6,7 +6,6 @@ package ui
// If initialization fails, Go returns an error and main is not called.
// Otherwise, Go does not return to its caller until main does, at which point it returns nil.
// After it returns, you cannot call future ui functions/methods meaningfully.
-// (TODO ideally we would want to be able to call ui.MsgBoxError() to report failures to the user, but I would need to figure out how to do this on platforms other than Windows.)
//
// It is not safe to call ui.Go() in a goroutine. It must be called directly from main().
//