diff options
| author | Pietro Gagliardi <[email protected]> | 2014-10-02 10:05:53 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-10-02 10:05:53 -0400 |
| commit | 982004d05052ef6aadd22dd5c4e7dbca85ab324a (patch) | |
| tree | 517a0f5a5397e6fb886b5e4741aff4fa18ba10d8 /textfield_darwin.go | |
| parent | 09db0bffffded1a68c562b2d6451c2a2b29ac279 (diff) | |
go fmt. Precursor to bug report filing.
Diffstat (limited to 'textfield_darwin.go')
| -rw-r--r-- | textfield_darwin.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/textfield_darwin.go b/textfield_darwin.go index 6dccbb9..3270cde 100644 --- a/textfield_darwin.go +++ b/textfield_darwin.go @@ -10,15 +10,15 @@ import ( import "C" type textfield struct { - _id C.id - changed *event - invalid C.id + _id C.id + changed *event + invalid C.id } func finishNewTextField(id C.id) *textfield { t := &textfield{ - _id: id, - changed: newEvent(), + _id: id, + changed: newEvent(), } C.textfieldSetDelegate(t._id, unsafe.Pointer(t)) return t |
