From 26065e45cf02e99bb7bcd17509ef97ecbbab3f1f Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Mon, 21 Jul 2014 10:32:32 -0400 Subject: [PATCH] Disabled Checkbox for now; more stuff to do first. --- redo/controls.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 }