summaryrefslogtreecommitdiff
path: root/new/container_unix.c
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2015-04-09 19:17:23 -0400
committerPietro Gagliardi <[email protected]>2015-04-09 19:17:23 -0400
commit10ea719dc8b9fa5fedc4c94c77775de3e64aed75 (patch)
treead1ceabcee3aeb686bbbd572747fbb075e7f386d /new/container_unix.c
parente78b625172199f77989015cc7ff817530eecaafd (diff)
Removed direct vtable calls from uiControl.
Diffstat (limited to 'new/container_unix.c')
-rw-r--r--new/container_unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/new/container_unix.c b/new/container_unix.c
index bb0cbb8..279e418 100644
--- a/new/container_unix.c
+++ b/new/container_unix.c
@@ -81,7 +81,7 @@ static void uiContainer_size_allocate(GtkWidget *widget, GtkAllocation *allocati
}
d.xPadding = gtkXPadding;
d.yPadding = gtkYPadding;
- (*(c->child->resize))(c->child, x, y, width, height, &d);
+ uiControlResize(c->child, x, y, width, height, &d);
}
struct forall {