summaryrefslogtreecommitdiff
path: root/new/newcontrol_unix.c
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2015-04-07 19:04:09 -0400
committerPietro Gagliardi <[email protected]>2015-04-07 19:04:09 -0400
commit7b1dfbf1d6de954efdb5d9d9d4df61a98935ddd4 (patch)
tree98b82ee5987a646a409bb0efd510366cb5182ef0 /new/newcontrol_unix.c
parent03d94db0fd80f1d293dbf727b6e9a2466546c2c3 (diff)
Unified the allocators across all platforms so that everyone uses uiAlloc() and friends.
Diffstat (limited to 'new/newcontrol_unix.c')
-rw-r--r--new/newcontrol_unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/new/newcontrol_unix.c b/new/newcontrol_unix.c
index 0523bd3..3123685 100644
--- a/new/newcontrol_unix.c
+++ b/new/newcontrol_unix.c
@@ -64,7 +64,7 @@ uiControl *uiUnixNewControl(GType type, guint nConstructParams, GParameter *cons
{
uiSingleWidgetControl *c;
- c = g_new0(uiSingleWidgetControl, 1);
+ c = uiNew(uiSingleWidgetControl);
c->widget = GTK_WIDGET(g_object_newv(type, nConstructParams, constructParams));
c->immediate = c->widget;