mirror of
https://github.com/brl/mutter.git
synced 2024-12-25 04:22:05 +00:00
[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:
parent
f9f03894a6
commit
719e314b8e
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user