summaryrefslogtreecommitdiff
path: root/src/allocators.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/allocators.c')
-rw-r--r--src/allocators.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/allocators.c b/src/allocators.c
index 23be621..c219820 100644
--- a/src/allocators.c
+++ b/src/allocators.c
@@ -438,7 +438,7 @@ allocators_init (Allocators *self)
gtk_widget_set_has_tooltip (GTK_WIDGET (self), TRUE);
- self->store = allocators_store_new ();
+ self->store = allocators_store_new (TRUE);
allocators_store_set_cmp (self->store, _sum_allocators_cmp);
gtk_tree_view_set_model (&self->tv, GTK_TREE_MODEL (self->store));
}
@@ -454,7 +454,7 @@ allocators_reset (Allocators *self)
{
g_object_unref (self->store);
- self->store = allocators_store_new ();
+ self->store = allocators_store_new (TRUE);
allocators_store_set_cmp (self->store, _sum_allocators_cmp);
gtk_tree_view_set_model (&self->tv, GTK_TREE_MODEL (self->store));
}