From 3bb14d8958a74bde30aaa7878163daaa9bdd8d80 Mon Sep 17 00:00:00 2001 From: Yaakov Selkowitz Date: Fri, 26 Aug 2011 00:29:29 -0500 Subject: Viewport: fix too few arguments to Layout function error Viewport.c: In function 'ChangeManaged': Viewport.c:415:3: error: too few arguments to function '((struct _ViewportClassRec *)w->core.widget_class)->form_class.layout' Signed-off-by: Yaakov Selkowitz Acked-by: Gaetan Nadon --- src/Viewport.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/Viewport.c b/src/Viewport.c index 0500dc8..6a46e36 100644 --- a/src/Viewport.c +++ b/src/Viewport.c @@ -412,7 +412,7 @@ static void ChangeManaged(widget) } GetGeometry( widget, child->core.width, child->core.height ); (*((ViewportWidgetClass)w->core.widget_class)->form_class.layout) - ( (FormWidget)w, w->core.width, w->core.height ); + ( (FormWidget)w, w->core.width, w->core.height, FALSE ); /* %%% do we need to hide this child from Form? */ } } -- cgit v1.2.3