From 353c949f64f5882a3149d76ce17de58c31cfc96d Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Mon, 10 Mar 2014 10:39:08 -0400 Subject: Removed error returns from sysData.setText() now that we no longer care. --- sysdata.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sysdata.go') diff --git a/sysdata.go b/sysdata.go index ce352bb..a942122 100644 --- a/sysdata.go +++ b/sysdata.go @@ -31,7 +31,7 @@ func (c *cSysData) show() { func (c *cSysData) hide() { panic(runtime.GOOS + " sysData does not define hide()") } -func (c *cSysData) setText(text string) error { +func (c *cSysData) setText(text string) { panic(runtime.GOOS + " sysData does not define setText()") } func (c *cSysData) setRect(x int, y int, width int, height int, winheight int) error { -- cgit v1.2.3