diff options
| author | Pietro Gagliardi <[email protected]> | 2014-02-15 13:36:24 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-02-15 13:36:24 -0500 |
| commit | d1768f27873fe277cfe2513203424afdd2a84d5d (patch) | |
| tree | 50070398090ae2e4150acb5bf5d2d31ffce08dab /sysdata.go | |
| parent | dce24dae3f4a737d66f13a12b2e09b37b4e7e3aa (diff) | |
Reduced the number of unnecessary error returns based on MSDN. The TODOs that used to be there have been moved to a new file; similar files for Mac and Linux will also be made.
Diffstat (limited to 'sysdata.go')
| -rw-r--r-- | sysdata.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ 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) { +func (c *cSysData) isChecked() bool { panic(runtime.GOOS + " sysData does not define isChecked()") } func (c *cSysData) text() (string, error) { |
