From d4953c77c3303cea4fcb1ae299bb4f809e5928f8 Mon Sep 17 00:00:00 2001 From: Georges Basile Stavracas Neto Date: Fri, 26 Jun 2020 15:23:46 -0300 Subject: clutter/actor: Remove clutter_actor_show_all Actors are visible by default these days, and this function is deprecated for a long time. https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1332 --- cogl/tests/conform/test-multitexture.c | 2 +- cogl/tests/conform/test-texture-mipmaps.c | 2 +- cogl/tests/conform/test-texture-pixmap-x11.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'cogl') diff --git a/cogl/tests/conform/test-multitexture.c b/cogl/tests/conform/test-multitexture.c index 5a7a4eca2..391c4e703 100644 --- a/cogl/tests/conform/test-multitexture.c +++ b/cogl/tests/conform/test-multitexture.c @@ -197,7 +197,7 @@ test_multitexture (TestUtilsGTestFixture *fixture, g_signal_connect (group, "paint", G_CALLBACK (on_paint), &state); - clutter_actor_show_all (stage); + clutter_actor_show (stage); clutter_main (); diff --git a/cogl/tests/conform/test-texture-mipmaps.c b/cogl/tests/conform/test-texture-mipmaps.c index 8db876315..5345453d2 100644 --- a/cogl/tests/conform/test-texture-mipmaps.c +++ b/cogl/tests/conform/test-texture-mipmaps.c @@ -127,7 +127,7 @@ test_texture_mipmaps (TestUtilsGTestFixture *fixture, g_signal_connect (group, "paint", G_CALLBACK (on_paint), &state); - clutter_actor_show_all (stage); + clutter_actor_show (stage); clutter_main (); diff --git a/cogl/tests/conform/test-texture-pixmap-x11.c b/cogl/tests/conform/test-texture-pixmap-x11.c index d2b9d7ae5..c43c0db74 100644 --- a/cogl/tests/conform/test-texture-pixmap-x11.c +++ b/cogl/tests/conform/test-texture-pixmap-x11.c @@ -224,7 +224,7 @@ test_texture_pixmap_x11 (TestUtilsGTestFixture *fixture, idle_handler = g_idle_add (queue_redraw, state.stage); - clutter_actor_show_all (state.stage); + clutter_actor_show (state.stage); clutter_main (); -- cgit v1.2.1