From 982004d05052ef6aadd22dd5c4e7dbca85ab324a Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Thu, 2 Oct 2014 10:05:53 -0400 Subject: go fmt. Precursor to bug report filing. --- button_darwin.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'button_darwin.go') diff --git a/button_darwin.go b/button_darwin.go index 0716365..06fac20 100644 --- a/button_darwin.go +++ b/button_darwin.go @@ -10,16 +10,16 @@ import ( import "C" type button struct { - _id C.id - clicked *event + _id C.id + clicked *event } func newButton(text string) *button { ctext := C.CString(text) defer C.free(unsafe.Pointer(ctext)) b := &button{ - _id: C.newButton(), - clicked: newEvent(), + _id: C.newButton(), + clicked: newEvent(), } C.buttonSetText(b._id, ctext) C.buttonSetDelegate(b._id, unsafe.Pointer(b)) -- cgit v1.2.3