summaryrefslogtreecommitdiff
path: root/control_darwin.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-10-02 10:05:53 -0400
committerPietro Gagliardi <[email protected]>2014-10-02 10:05:53 -0400
commit982004d05052ef6aadd22dd5c4e7dbca85ab324a (patch)
tree517a0f5a5397e6fb886b5e4741aff4fa18ba10d8 /control_darwin.go
parent09db0bffffded1a68c562b2d6451c2a2b29ac279 (diff)
go fmt. Precursor to bug report filing.
Diffstat (limited to 'control_darwin.go')
-rw-r--r--control_darwin.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/control_darwin.go b/control_darwin.go
index b3b3dcf..cc77ed2 100644
--- a/control_darwin.go
+++ b/control_darwin.go
@@ -12,7 +12,7 @@ type controlPrivate interface {
}
type controlParent struct {
- id C.id
+ id C.id
}
func basesetParent(c controlPrivate, p *controlParent) {
@@ -38,13 +38,13 @@ func basegetAuxResizeInfo(c controlPrivate, d *sizing) {
}
type scroller struct {
- id C.id
+ id C.id
}
func newScroller(child C.id, bordered bool) *scroller {
id := C.newScrollView(child, toBOOL(bordered))
s := &scroller{
- id: id,
+ id: id,
}
return s
}