You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-visualization/ggobi/files/ggobi-2.1.8-graphviz.patch

14 lines
534 B

--- plugins/GraphLayout/graphviz.c 2009-03-15 15:03:18.000000000 -0400
+++ plugins/GraphLayout/graphviz.c 2009-03-15 15:04:30.000000000 -0400
@@ -267,8 +267,8 @@
m = visible[i];
name = (gchar *) g_array_index (d->rowlab, gchar *, m);
node = agfindnode (graph, name);
- pos[i][0] = (gdouble) ND_coord_i(node).x;
- pos[i][1] = (gdouble) ND_coord_i(node).y;
+ pos[i][0] = (gdouble) ND_coord(node).x;
+ pos[i][1] = (gdouble) ND_coord(node).y;
}
} else if (layout_type == TWOPI_LAYOUT) {