diff options
| author | Pietro Gagliardi <[email protected]> | 2015-04-07 22:58:06 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2015-04-07 22:58:06 -0400 |
| commit | 49ee58ca364d055594657f11cef04f8c8440c366 (patch) | |
| tree | a045903060209a95f2035044d57f5b1c0a52b0b2 /new/window_unix.c | |
| parent | 3fc36ec58228f244f841f6ff8953cbbbfea9f350 (diff) | |
Decided to remove the logging for now. Will inject it right into the allocation system later.
Diffstat (limited to 'new/window_unix.c')
| -rw-r--r-- | new/window_unix.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/new/window_unix.c b/new/window_unix.c index 734b156..3d6f8e7 100644 --- a/new/window_unix.c +++ b/new/window_unix.c @@ -12,7 +12,6 @@ static void onDestroy(GtkWindow *window, gpointer data) { uiWindow *w = (uiWindow *) data; -LOGFREE(w, uiWindow) uiFree(w); } @@ -21,7 +20,6 @@ uiWindow *uiNewWindow(char *title, int width, int height) uiWindow *w; w = uiNew(uiWindow); -LOGALLOC(w, uiWindow) w->widget = gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_window_set_title(GTK_WINDOW(w->widget), title); gtk_window_resize(GTK_WINDOW(w->widget), width, height); |
