mirror of
https://github.com/brl/mutter.git
synced 2024-12-26 04:42:14 +00:00
stage/x11: Fix clutter backend variable naming
Being in backends/, `backend` tends to refer to a `MetaBackend`, so avoid that naming convention for things that are not, e.g. clutter backends. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1833>
This commit is contained in:
parent
475296ee9a
commit
3bb6865912
@ -616,7 +616,7 @@ meta_stage_x11_translate_event (MetaStageX11 *stage_x11,
|
|||||||
{
|
{
|
||||||
ClutterStageCogl *stage_cogl;
|
ClutterStageCogl *stage_cogl;
|
||||||
gboolean res = FALSE;
|
gboolean res = FALSE;
|
||||||
ClutterBackendX11 *backend_x11;
|
ClutterBackendX11 *clutter_backend_x11;
|
||||||
ClutterStage *stage;
|
ClutterStage *stage;
|
||||||
|
|
||||||
stage_cogl = meta_x11_get_stage_window_from_window (xevent->xany.window);
|
stage_cogl = meta_x11_get_stage_window_from_window (xevent->xany.window);
|
||||||
@ -624,7 +624,7 @@ meta_stage_x11_translate_event (MetaStageX11 *stage_x11,
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
stage = stage_cogl->wrapper;
|
stage = stage_cogl->wrapper;
|
||||||
backend_x11 = CLUTTER_BACKEND_X11 (stage_cogl->backend);
|
clutter_backend_x11 = CLUTTER_BACKEND_X11 (stage_cogl->backend);
|
||||||
|
|
||||||
switch (xevent->type)
|
switch (xevent->type)
|
||||||
{
|
{
|
||||||
@ -779,9 +779,11 @@ meta_stage_x11_translate_event (MetaStageX11 *stage_x11,
|
|||||||
g_debug ("Client message for stage, win:0x%x",
|
g_debug ("Client message for stage, win:0x%x",
|
||||||
(unsigned int) xevent->xany.window);
|
(unsigned int) xevent->xany.window);
|
||||||
|
|
||||||
if (xevent->xclient.message_type == backend_x11->atom_WM_PROTOCOLS)
|
if (xevent->xclient.message_type == clutter_backend_x11->atom_WM_PROTOCOLS)
|
||||||
{
|
{
|
||||||
if (handle_wm_protocols_event (backend_x11, stage_x11, xevent))
|
if (handle_wm_protocols_event (clutter_backend_x11,
|
||||||
|
stage_x11,
|
||||||
|
xevent))
|
||||||
{
|
{
|
||||||
g_return_val_if_fail (META_IS_STAGE_X11_NESTED (stage_x11),
|
g_return_val_if_fail (META_IS_STAGE_X11_NESTED (stage_x11),
|
||||||
FALSE);
|
FALSE);
|
||||||
|
Loading…
Reference in New Issue
Block a user