[stage-x11] Fix a warning due to a missing cast

I stupidly forgot to cast a ClutterStage to a ClutterActor and somehow
missed or didn't get the compiler warning. Fix.
This commit is contained in:
Chris Lord 2010-02-16 18:25:46 +00:00
parent f9f03894a6
commit 719e314b8e

View File

@ -208,7 +208,7 @@ clutter_stage_x11_resize (ClutterStageWindow *stage_window,
*/ */
stage_x11->xwin_width = width; stage_x11->xwin_width = width;
stage_x11->xwin_height = height; stage_x11->xwin_height = height;
clutter_actor_queue_relayout (stage_x11->wrapper); clutter_actor_queue_relayout (CLUTTER_ACTOR (stage_x11->wrapper));
return; return;
} }