| Date: Thu, 3 Jul 2008 00:01:49 -0400
9vx/OSX: do not create window group (thanks to Eric Nichols)
Diffstat:
src/9vx/osx/screen.c | 3 ---
1 file changed, 0 insertions(+), 3 deletions(-)
--- |
| @@ -41,7 +41,6 @@ struct {
MenuRef vmenu;
WindowRef window;
CGImageRef image;
- WindowGroupRef wingroup;
PasteboardRef snarf;
} osx;
@@ -126,8 +125,6 @@ _screeninit(void)
or.bottom = Dy(osx.fullscreenr) - 200;
or.right = Dx(osx.fullscreenr);
CreateNewWindow(kDocumentWindowClass, WindowAttrs, &or, &osx.window);
- CreateWindowGroup(0, &osx.wingroup);
- SetWindowGroup(osx.window, osx.wingroup);
SetWindowTitleWithCFString(osx.window, CFSTR("Plan 9 VX"));
seticon();
|