mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2024-12-13 16:07:36 +00:00
history-box: Chain up to constructed() early
This commit is contained in:
parent
01aa8c04c2
commit
fd5a24f853
1 changed files with 2 additions and 2 deletions
|
@ -147,6 +147,8 @@ constructed (GObject *object)
|
|||
|
||||
g_assert (self->model != NULL);
|
||||
|
||||
G_OBJECT_CLASS (calls_history_box_parent_class)->constructed (object);
|
||||
|
||||
self->model_changed_handler_id =
|
||||
g_signal_connect_swapped
|
||||
(self->model, "items-changed", G_CALLBACK (update), self);
|
||||
|
@ -159,8 +161,6 @@ constructed (GObject *object)
|
|||
NULL);
|
||||
|
||||
update (self);
|
||||
|
||||
G_OBJECT_CLASS (calls_history_box_parent_class)->constructed (object);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue