diff options
| author | Pietro Gagliardi <[email protected]> | 2015-04-07 19:04:09 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2015-04-07 19:04:09 -0400 |
| commit | 7b1dfbf1d6de954efdb5d9d9d4df61a98935ddd4 (patch) | |
| tree | 98b82ee5987a646a409bb0efd510366cb5182ef0 /new/button_unix.c | |
| parent | 03d94db0fd80f1d293dbf727b6e9a2466546c2c3 (diff) | |
Unified the allocators across all platforms so that everyone uses uiAlloc() and friends.
Diffstat (limited to 'new/button_unix.c')
| -rw-r--r-- | new/button_unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/new/button_unix.c b/new/button_unix.c index 2d341cc..9c6fa2b 100644 --- a/new/button_unix.c +++ b/new/button_unix.c @@ -26,7 +26,7 @@ uiControl *uiNewButton(const char *text) GParameter props[1]; GtkWidget *widget; - b = g_new0(struct button, 1); + b = uiNew(struct button); props[0].name = "label"; g_value_init(&(props[0].value), G_TYPE_STRING); |
