summaryrefslogtreecommitdiff
path: root/redo/window_darwin.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-08-11 12:49:39 -0400
committerPietro Gagliardi <[email protected]>2014-08-11 12:49:39 -0400
commit219132f2f18d3b77d472e218bbcd39eb059bb90d (patch)
tree33bf8777be0b9f5e55204a7acf1bf9d153c28386 /redo/window_darwin.go
parent55f25afb49995ae799d9a093ed4f14142d4a8691 (diff)
Renamed Mac OS X's container's view field to id to be in sync with the other Mac OS X data structures.
Diffstat (limited to 'redo/window_darwin.go')
-rw-r--r--redo/window_darwin.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/redo/window_darwin.go b/redo/window_darwin.go
index 3b131d3..ddd598e 100644
--- a/redo/window_darwin.go
+++ b/redo/window_darwin.go
@@ -28,7 +28,7 @@ func newWindow(title string, width int, height int, control Control) *window {
container: newContainer(control),
}
C.windowSetDelegate(w.id, unsafe.Pointer(w))
- C.windowSetContentView(w.id, w.container.view)
+ C.windowSetContentView(w.id, w.container.id)
return w
}