diff options
| author | Pietro Gagliardi <[email protected]> | 2015-04-07 13:37:03 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2015-04-07 13:37:03 -0400 |
| commit | 205cc9c2cf3fa99dbe9a95b60b5a46dcfb77fb0d (patch) | |
| tree | 2c07a7104ac27e3502c9795a30f39ab4ee7fc84b /new/newcontrol_unix.c | |
| parent | 5b929084f8b80409ee39d21ef80f562042807e0b (diff) | |
Fixed compilation issues. Now to implement uiButton on GTK+.
Diffstat (limited to 'new/newcontrol_unix.c')
| -rw-r--r-- | new/newcontrol_unix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/new/newcontrol_unix.c b/new/newcontrol_unix.c index dd4e4eb..0523bd3 100644 --- a/new/newcontrol_unix.c +++ b/new/newcontrol_unix.c @@ -62,9 +62,9 @@ static void singleContainerHide(uiControl *c) uiControl *uiUnixNewControl(GType type, guint nConstructParams, GParameter *constructParams, gboolean inScrolledWindow, gboolean needsViewport, gboolean scrolledWindowHasBorder, void *data) { - uiSingleHWNDControl *c; + uiSingleWidgetControl *c; - c = g_new0(uiSingleHWNDControl, 1); + c = g_new0(uiSingleWidgetControl, 1); c->widget = GTK_WIDGET(g_object_newv(type, nConstructParams, constructParams)); c->immediate = c->widget; |
