diff options
| author | Pietro Gagliardi <[email protected]> | 2014-07-25 23:11:41 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-07-25 23:11:41 -0400 |
| commit | ee5c6ff8461d5147fa74205f21b7fce6e5606d74 (patch) | |
| tree | 942d428fd6ceacececeb6ca23d50206f59abdd15 /redo/window_darwin.m | |
| parent | 41f3ef292f2e0d70beb3722004c968881ca0fae2 (diff) | |
Implemented Tab on Mac OS X. Woo! I'll need to add justification for what I'm doing with the whole recursive call thing; when I get confirmation from the GTK+ camp I will.
Diffstat (limited to 'redo/window_darwin.m')
| -rw-r--r-- | redo/window_darwin.m | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/redo/window_darwin.m b/redo/window_darwin.m index 20e26e4..a923ef5 100644 --- a/redo/window_darwin.m +++ b/redo/window_darwin.m @@ -80,6 +80,11 @@ void windowClose(id win) [toNSWindow(win) close]; } +id windowContentView(id win) +{ + return (id) [toNSWindow(win) contentView]; +} + // fake a resize event under certain conditions; see each invocation for details void windowRedraw(id win) { |
