1c64bfde6e
Additionally, drop unnecssary chrpath usage.
33 lines
1.3 KiB
Diff
33 lines
1.3 KiB
Diff
From 1501a84f626997fa62ad4d02acedccda23adbd90 Mon Sep 17 00:00:00 2001
|
|
From: Felipe Borges <felipeborges@gnome.org>
|
|
Date: Tue, 3 May 2022 10:50:33 +0200
|
|
Subject: [PATCH] connection-editor: Unparent child widget on dispose
|
|
|
|
WirelessSecurityWPAEAP is a GtkWidget owned by the CEPage8021xSecurity
|
|
widget, which is supposed to "unparent" it on "dispose" (since parents
|
|
hold a reference to child widgets). Instead we were calling
|
|
g_clear_object on it.
|
|
|
|
Fixes #1671
|
|
---
|
|
panels/network/connection-editor/ce-page-8021x-security.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/panels/network/connection-editor/ce-page-8021x-security.c b/panels/network/connection-editor/ce-page-8021x-security.c
|
|
index deec51fc8..f0b36e70a 100644
|
|
--- a/panels/network/connection-editor/ce-page-8021x-security.c
|
|
+++ b/panels/network/connection-editor/ce-page-8021x-security.c
|
|
@@ -154,8 +154,8 @@ ce_page_8021x_security_dispose (GObject *object)
|
|
{
|
|
CEPage8021xSecurity *self = CE_PAGE_8021X_SECURITY (object);
|
|
|
|
+ gtk_widget_unparent (GTK_WIDGET (self->security));
|
|
g_clear_object (&self->connection);
|
|
- g_clear_object (&self->security);
|
|
g_clear_object (&self->group);
|
|
|
|
G_OBJECT_CLASS (ce_page_8021x_security_parent_class)->dispose (object);
|
|
--
|
|
GitLab
|
|
|