summaryrefslogtreecommitdiff
path: root/src/callgraph.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2007-11-26 15:21:38 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2007-11-26 15:21:38 +0000
commit6f9b43bae9a67c25d0d931dddab2de38a24d314f (patch)
tree22c9591561f53cb6b76508b911a7885c92cbe12a /src/callgraph.c
parent66fca85b514df28cd88dc5718a5175caf5120865 (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.c4
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);
}