summaryrefslogtreecommitdiff
path: root/src/graph/dot.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/graph/dot.c')
-rw-r--r--src/graph/dot.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/graph/dot.c b/src/graph/dot.c
index 9f8e3b3..27e60bc 100644
--- a/src/graph/dot.c
+++ b/src/graph/dot.c
@@ -132,7 +132,7 @@ void delete_graph_layout(graph_layout *layout)
/******************************************************************************
* *
* Paramètres : layout = graphique à supprimer de la mémoire. *
-* fixed = support de destination. *
+* view = support de destination. *
* nodes = liste de noeuds à traiter. *
* count = taille de la liste. *
* *
@@ -144,7 +144,7 @@ void delete_graph_layout(graph_layout *layout)
* *
******************************************************************************/
-void place_nodes_of_graph_layout(const graph_layout *layout, GtkFixed *fixed, GGraphNode **nodes, size_t count)
+void place_nodes_of_graph_layout(const graph_layout *layout, GtkGraphView *view, GGraphNode **nodes, size_t count)
{
int height; /* Hauteur du graphique */
node_t *iter; /* Boucle de parcours */
@@ -158,7 +158,7 @@ void place_nodes_of_graph_layout(const graph_layout *layout, GtkFixed *fixed, GG
printf(" pos :: (%d ; %d)\n", iter->u.coord.x, height - iter->u.coord.y);
node = find_graph_node_by_name(nodes, count, iter->name);
- g_graph_node_place(node, fixed, iter->u.coord.x, height - iter->u.coord.y);
+ g_graph_node_place(node, view, iter->u.coord.x, height - iter->u.coord.y);
}
}