diff options
| author | Pietro Gagliardi <[email protected]> | 2014-02-13 15:14:10 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-02-13 15:14:10 -0500 |
| commit | 44842fea4b2a46ded301fb460a9a0f998fc2ee0c (patch) | |
| tree | 23e7cb18336960022df2764fc6c4243d29024242 /sysdata.go | |
| parent | f3c77bda6e720fe7750fc3db2aa38f8b74faf585 (diff) | |
Added Checkbox.Checked().
Diffstat (limited to 'sysdata.go')
| -rw-r--r-- | sysdata.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -26,6 +26,9 @@ func (c *cSysData) setText(text string) error { func (c *cSysData) setRect(x int, y int, width int, height int) error { panic(runtime.GOOS + " sysData does not define setRect()") } +func (c *cSysData) isChecked() (bool, error) { + panic(runtime.GOOS + " sysData does not define isChecked()") +} const ( c_window = iota |
