From 3ade409ddebc48f9960415816d2f4439c6d5d4ae Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sun, 29 Jun 2014 14:08:01 -0400 Subject: FIxed compilation errors in the Mac OS X build. It works, but I still need to fix dialogs before I can push anything. --- sysdata_darwin.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sysdata_darwin.go') diff --git a/sysdata_darwin.go b/sysdata_darwin.go index 687f81e..cd25748 100644 --- a/sysdata_darwin.go +++ b/sysdata_darwin.go @@ -308,15 +308,15 @@ func (s *sysData) len() int { } func (s *sysData) setAreaSize(width int, height int) { - return C.setAreaSize(s.id, C.intptr_t(width), C.intptr_t(height)) + C.setAreaSize(s.id, C.intptr_t(width), C.intptr_t(height)) } func (s *sysData) repaintAll() { - return C.display(s.id) + C.display(s.id) } func (s *sysData) center() { - return C.center(s.id) + C.center(s.id) } func (s *sysData) setChecked(checked bool) { -- cgit v1.2.3