Disabled Checkbox for now; more stuff to do first.

This commit is contained in:
Pietro Gagliardi 2014-07-21 10:32:32 -04:00
parent ea5936855f
commit 26065e45cf
1 changed files with 3 additions and 1 deletions

View File

@ -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
}