summaryrefslogtreecommitdiff
path: root/redo/controls.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-07-21 10:32:32 -0400
committerPietro Gagliardi <[email protected]>2014-07-21 10:32:32 -0400
commit26065e45cf02e99bb7bcd17509ef97ecbbab3f1f (patch)
treeeb6ebb4224944ec3bb547aee1e650913c6627060 /redo/controls.go
parentea5936855ff863cb4c30a36d6a9ab6628d0b5631 (diff)
Disabled Checkbox for now; more stuff to do first.
Diffstat (limited to 'redo/controls.go')
-rw-r--r--redo/controls.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/redo/controls.go b/redo/controls.go
index e20c5eb..38aca16 100644
--- a/redo/controls.go
+++ b/redo/controls.go
@@ -49,5 +49,7 @@ type Checkbox interface {
// NewCheckbox creates a new Checkbox with the given label text.
// The Checkbox will be initially unchecked.
func NewCheckbox(text string) Checkbox {
- return newCheckbox(text)
+// return newCheckbox(text)
+return nil
+//TODO add checkbox after resolving other TODOs
}