surface-actor: Replace \r\n with \n

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3945>
This commit is contained in:
Bilal Elmoussaoui 2024-08-13 14:06:51 +02:00
parent 8e2587c197
commit cbe88c8e71
2 changed files with 4 additions and 4 deletions

View File

@ -316,9 +316,9 @@ meta_surface_actor_wayland_init (MetaSurfaceActorWayland *self)
MetaSurfaceActor *
meta_surface_actor_wayland_new (MetaWaylandSurface *surface)
{
MetaSurfaceActorWayland *self = g_object_new (META_TYPE_SURFACE_ACTOR_WAYLAND,
"accessible-name", "Wayland surface",
NULL);
MetaSurfaceActorWayland *self = g_object_new (META_TYPE_SURFACE_ACTOR_WAYLAND,
"accessible-name", "Wayland surface",
NULL);
g_assert (meta_is_wayland_compositor ());

View File

@ -419,7 +419,7 @@ meta_surface_actor_x11_new (MetaWindow *window)
sync_unredirected (self);
clutter_actor_set_reactive (CLUTTER_ACTOR (self), TRUE);
clutter_actor_set_accessible_name (CLUTTER_ACTOR (self), "X11 surface");
clutter_actor_set_accessible_name (CLUTTER_ACTOR (self), "X11 surface");
return META_SURFACE_ACTOR (self);
}