diff options
Diffstat (limited to 'control_darwin.go')
| -rw-r--r-- | control_darwin.go | 6 |
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 } |
