From 205cc9c2cf3fa99dbe9a95b60b5a46dcfb77fb0d Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Tue, 7 Apr 2015 13:37:03 -0400 Subject: Fixed compilation issues. Now to implement uiButton on GTK+. --- new/container_unix.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'new/container_unix.c') diff --git a/new/container_unix.c b/new/container_unix.c index ab0298f..d961d02 100644 --- a/new/container_unix.c +++ b/new/container_unix.c @@ -39,7 +39,7 @@ static void uiContainer_size_allocate(GtkWidget *widget, GtkAllocation *allocati gtk_widget_set_allocation(widget, allocation); c = uiContainer(widget)->child; - (*(c->resize))(widget, allocation.x, allocation.y, allocation.width, allocation.height, &d); + (*(c->resize))(c, allocation->x, allocation->y, allocation->width, allocation->height, &d); } struct forall { @@ -51,7 +51,7 @@ static void doforall(gpointer obj, gpointer data) { struct forall *s = (struct forall *) data; - (*(s->callback))(uiContainer(obj), s->data); + (*(s->callback))(GTK_WIDGET(obj), s->data); } static void uiContainer_forall(GtkContainer *container, gboolean includeInternals, GtkCallback callback, gpointer data) -- cgit v1.2.3