Stop using gtk_main and gtk_main_quit

Replace these calls with direct use of GMainContext api.
This commit is contained in:
Matthias Clasen
2020-02-09 22:24:47 -05:00
parent c789711652
commit a6c5466900
121 changed files with 1198 additions and 292 deletions

View File

@@ -63,7 +63,8 @@ main (int argc, char *argv[])
gtk_widget_show (win);
gtk_main ();
while (TRUE)
g_main_context_iteration (NULL, TRUE);
return 0;
}