diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2007-11-26 15:21:38 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2007-11-26 15:21:38 +0000 |
commit | 6f9b43bae9a67c25d0d931dddab2de38a24d314f (patch) | |
tree | 22c9591561f53cb6b76508b911a7885c92cbe12a /src/callgraph.c | |
parent | 66fca85b514df28cd88dc5718a5175caf5120865 (diff) |
Add a ring view.
Allow navigation through the call graph using a donut like view.
Diffstat (limited to 'src/callgraph.c')
-rw-r--r-- | src/callgraph.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/callgraph.c b/src/callgraph.c index c6b00cd..a22d5fc 100644 --- a/src/callgraph.c +++ b/src/callgraph.c @@ -532,7 +532,9 @@ call_graph_init (CallGraph *self) /* insert a dummy model */ store = gtk_tree_store_new (CG_N_COLUMNS, - G_TYPE_STRING, G_TYPE_UINT64, G_TYPE_UINT, G_TYPE_UINT); + G_TYPE_STRING, G_TYPE_UINT64, + G_TYPE_UINT, G_TYPE_UINT, + G_TYPE_POINTER); gtk_tree_view_set_model (&self->tv, GTK_TREE_MODEL (store)); g_object_unref (store); } |