Use gtk_window_destroy

Replace calls to gtk_widget_destroy on windows
with gtk_window_destroy.
This commit is contained in:
Matthias Clasen
2020-05-09 10:26:22 -04:00
parent 48821a64d0
commit cd0081d08a
137 changed files with 364 additions and 368 deletions

View File

@@ -260,7 +260,7 @@ main (gint argc,
while (TRUE)
g_main_context_iteration (NULL, TRUE);
gtk_widget_destroy (window);
gtk_window_destroy (GTK_WINDOW (window));
return 0;
}