From 4dd5840b57b92fe70226a022c1933c3413ac3766 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Tue, 18 Jun 2013 16:53:18 -0500 Subject: in tests/, replace deprecated API call g_main_quit() with g_main_loop_quit() --- tests/test-glib-simple-items.c | 2 +- tests/test-gtk-reorder-server.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test-glib-simple-items.c b/tests/test-glib-simple-items.c index 1fff8bf..f4086a4 100644 --- a/tests/test-glib-simple-items.c +++ b/tests/test-glib-simple-items.c @@ -25,7 +25,7 @@ dummy_users (DbusmenuMenuitem * root) { static gboolean quititall (gpointer data) { - g_main_quit(mainloop); + g_main_loop_quit(mainloop); return FALSE; } diff --git a/tests/test-gtk-reorder-server.c b/tests/test-gtk-reorder-server.c index d0fba82..560820e 100644 --- a/tests/test-gtk-reorder-server.c +++ b/tests/test-gtk-reorder-server.c @@ -52,7 +52,7 @@ static gboolean timer_func (gpointer data) { if (test == NUMBER_TESTS) { - g_main_quit(mainloop); + g_main_loop_quit(mainloop); return FALSE; } -- cgit v1.2.3