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

@@ -101,7 +101,7 @@ quit_app (GSimpleAction *action,
win = list->data;
next = list->next;
gtk_widget_destroy (GTK_WIDGET (win));
gtk_window_destroy (GTK_WINDOW (win));
list = next;
}