From d1768f27873fe277cfe2513203424afdd2a84d5d Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sat, 15 Feb 2014 13:36:24 -0500 Subject: 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. --- sysdata.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sysdata.go') diff --git a/sysdata.go b/sysdata.go index a49db08..4f5c017 100644 --- a/sysdata.go +++ b/sysdata.go @@ -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) { -- cgit v1.2.3