summaryrefslogtreecommitdiff
path: root/tests/testtoolbar2.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2020-02-09 22:24:47 -0500
committerMatthias Clasen <mclasen@redhat.com>2020-02-09 23:12:32 -0500
commita6c54669007f3932d6e2813e618bb106579fd28f (patch)
tree13835ffeb8a11f13a6fc142023050a6bac0f9354 /tests/testtoolbar2.c
parentc78971165215ca749af68c3f6f16fb7eca08e142 (diff)
downloadgtk+-a6c54669007f3932d6e2813e618bb106579fd28f.tar.gz
Stop using gtk_main and gtk_main_quit
Replace these calls with direct use of GMainContext api.
Diffstat (limited to 'tests/testtoolbar2.c')
-rw-r--r--tests/testtoolbar2.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/testtoolbar2.c b/tests/testtoolbar2.c
index 4b1b24e0fd..47174d9b49 100644
--- a/tests/testtoolbar2.c
+++ b/tests/testtoolbar2.c
@@ -34,7 +34,8 @@ int main (int argc, char *argv[])
gtk_widget_show (GTK_WIDGET (window));
- gtk_main ();
+ while (TRUE)
+ g_main_context_iteration (NULL, TRUE);
return 0;
}