summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorey Berla <corey@berla.me>2023-01-02 17:07:19 -0800
committerCorey Berla <corey@berla.me>2023-05-04 21:32:59 +0000
commit7c5f51739adc1c0abf60e1ac88f9cf9c4ce1aa97 (patch)
tree1c925bced8770521ff9e2fea372394816e155ddd
parentf0b8a137168f425c583529cab4a52cb224ea4991 (diff)
downloadnautilus-7c5f51739adc1c0abf60e1ac88f9cf9c4ce1aa97.tar.gz
column-chooser: Chain up constructed
This bug has been around since the function was added over 12 years ago. Fortunately, it doesn't have any noticeable impacts. But we are about to change the parent class to AdwWindow, which needs to run its own .constructed(), so let's chain up in preparation. See: 4b3038b4ea85ce309d6fb128675611d3c912739e
-rw-r--r--src/nautilus-column-chooser.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nautilus-column-chooser.c b/src/nautilus-column-chooser.c
index 72e18bcc3..de68338ec 100644
--- a/src/nautilus-column-chooser.c
+++ b/src/nautilus-column-chooser.c
@@ -334,6 +334,8 @@ nautilus_column_chooser_constructed (GObject *object)
{
NautilusColumnChooser *chooser;
+ G_OBJECT_CLASS (nautilus_column_chooser_parent_class)->constructed (object);
+
chooser = NAUTILUS_COLUMN_CHOOSER (object);
populate_tree (chooser);