From cbe88c8e7139dea048312bc3f05c3732fa694fc1 Mon Sep 17 00:00:00 2001 From: Bilal Elmoussaoui Date: Tue, 13 Aug 2024 14:06:51 +0200 Subject: [PATCH] surface-actor: Replace \r\n with \n Part-of: --- src/compositor/meta-surface-actor-wayland.c | 6 +++--- src/compositor/meta-surface-actor-x11.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/compositor/meta-surface-actor-wayland.c b/src/compositor/meta-surface-actor-wayland.c index 00b64b6ec..817dc2691 100644 --- a/src/compositor/meta-surface-actor-wayland.c +++ b/src/compositor/meta-surface-actor-wayland.c @@ -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 ()); diff --git a/src/compositor/meta-surface-actor-x11.c b/src/compositor/meta-surface-actor-x11.c index 90d5aaecc..f0dfd715a 100644 --- a/src/compositor/meta-surface-actor-x11.c +++ b/src/compositor/meta-surface-actor-x11.c @@ -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); }