1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-06-25 05:09:30 +00:00
Anton Lazarev 2023-12-13 16:08:04 -08:00
parent 34a7651f44
commit 2b972ba035
2 changed files with 3 additions and 3 deletions

View file

@ -763,9 +763,9 @@ finalize (GObject *object)
g_clear_handle_id (&self->id_sigint, g_source_remove);
if (self->main_window)
gtk_widget_destroy (GTK_WIDGET (self->main_window));
gtk_window_destroy (GTK_WINDOW (self->main_window));
if (self->call_window)
gtk_widget_destroy (GTK_WIDGET (self->call_window));
gtk_window_destroy (GTK_WINDOW (self->call_window));
g_clear_object (&self->record_store);
g_clear_object (&self->ringer);

View file

@ -414,7 +414,7 @@ dispose (GObject *object)
g_clear_object (&self->record_store);
if (self->account_overview) {
gtk_widget_destroy (GTK_WIDGET (self->account_overview));
gtk_window_destroy (GTK_WINDOW (self->account_overview));
self->account_overview = NULL;
}