summaryrefslogtreecommitdiff
path: root/src/gui/core/items.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-08-08 20:00:01 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-08-08 20:00:01 (GMT)
commit8b17768e12ac797e06b5829ee4a4b9ab8da78954 (patch)
treeb66abdbb52fa9b2cf07738ab67900f05721bc65e /src/gui/core/items.c
parentb3b515ba37ef58751e5407bfcdff2dd67932b99a (diff)
Improved reference count tracking.
Diffstat (limited to 'src/gui/core/items.c')
-rw-r--r--src/gui/core/items.c6
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)