From 1658554437f651a144311c18f21eb2bf449250c1 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Tue, 3 Sep 2013 17:12:08 +0100 Subject: Don't allow what treeview initialisation sets as the dimensions to be overwritten with defaults of 0. --- riscos/treeview.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'riscos') diff --git a/riscos/treeview.c b/riscos/treeview.c index 479a857cc..51b6809c5 100644 --- a/riscos/treeview.c +++ b/riscos/treeview.c @@ -155,12 +155,6 @@ ro_treeview *ro_treeview_create(wimp_w window, struct toolbar *toolbar, tv->w = window; tv->tb = toolbar; - tv->tree = tree_create(flags, &ro_tree_callbacks, tv); - if (tv->tree == NULL) { - free(tv); - return NULL; - } - /* Set the tree redraw origin at a default 0,0 RO units. */ tv->origin.x = 0; @@ -181,6 +175,12 @@ ro_treeview *ro_treeview_create(wimp_w window, struct toolbar *toolbar, tv->drag = TREE_NO_DRAG; + tv->tree = tree_create(flags, &ro_tree_callbacks, tv); + if (tv->tree == NULL) { + free(tv); + return NULL; + } + /* Record the callback info. */ tv->callbacks = callbacks; -- cgit v1.2.3