summaryrefslogtreecommitdiff
path: root/new/window_darwin.m
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2015-04-07 22:58:06 -0400
committerPietro Gagliardi <[email protected]>2015-04-07 22:58:06 -0400
commit49ee58ca364d055594657f11cef04f8c8440c366 (patch)
treea045903060209a95f2035044d57f5b1c0a52b0b2 /new/window_darwin.m
parent3fc36ec58228f244f841f6ff8953cbbbfea9f350 (diff)
Decided to remove the logging for now. Will inject it right into the allocation system later.
Diffstat (limited to 'new/window_darwin.m')
-rw-r--r--new/window_darwin.m1
1 files changed, 0 insertions, 1 deletions
diff --git a/new/window_darwin.m b/new/window_darwin.m
index a5f1b2d..8beb008 100644
--- a/new/window_darwin.m
+++ b/new/window_darwin.m
@@ -40,7 +40,6 @@ uiWindow *uiNewWindow(char *title, int width, int height)
uiWindow *w;
w = (uiWindow *) uiAlloc(sizeof (uiWindow));
-LOGALLOC(w, uiWindow)
w->w = [[NSWindow alloc] initWithContentRect:NSMakeRect(0, 0, (CGFloat) width, (CGFloat) height)
styleMask:(NSTitledWindowMask | NSClosableWindowMask | NSMiniaturizableWindowMask | NSResizableWindowMask)