diff options
| author | Pietro Gagliardi <[email protected]> | 2014-08-11 12:49:39 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-08-11 12:49:39 -0400 |
| commit | 219132f2f18d3b77d472e218bbcd39eb059bb90d (patch) | |
| tree | 33bf8777be0b9f5e55204a7acf1bf9d153c28386 /redo/tab_darwin.go | |
| parent | 55f25afb49995ae799d9a093ed4f14142d4a8691 (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/tab_darwin.go')
| -rw-r--r-- | redo/tab_darwin.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/redo/tab_darwin.go b/redo/tab_darwin.go index ba74f1f..e6e0c8a 100644 --- a/redo/tab_darwin.go +++ b/redo/tab_darwin.go @@ -25,7 +25,7 @@ func (t *tab) Append(name string, control Control) { t.tabs = append(t.tabs, c) cname := C.CString(name) defer C.free(unsafe.Pointer(cname)) - C.tabAppend(t._id, cname, c.view) + C.tabAppend(t._id, cname, c.id) } func (t *tab) id() C.id { |
