diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2018-08-08 20:00:01 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2018-08-08 20:00:01 (GMT) |
commit | 8b17768e12ac797e06b5829ee4a4b9ab8da78954 (patch) | |
tree | b66abdbb52fa9b2cf07738ab67900f05721bc65e /src/gui/core | |
parent | b3b515ba37ef58751e5407bfcdff2dd67932b99a (diff) |
Improved reference count tracking.
Diffstat (limited to 'src/gui/core')
-rw-r--r-- | src/gui/core/items.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gui/core/items.c b/src/gui/core/items.c index 68d2556..dff177d 100644 --- a/src/gui/core/items.c +++ b/src/gui/core/items.c @@ -88,6 +88,9 @@ void change_editor_items_current_content(GLoadedContent *content) { _first_content_change = false; + if (content != NULL) + g_object_ref(G_OBJECT(content)); + set_current_content(content); editem_list_for_each(iter, _editem_list) @@ -196,6 +199,9 @@ void change_editor_items_current_view(GLoadedPanel *panel) { _first_panel_change = false; + if (panel != NULL) + g_object_ref(G_OBJECT(panel)); + set_current_view(panel); editem_list_for_each(iter, _editem_list) |