]> granicus.if.org Git - graphviz/commitdiff
makeSelfArcs: remove unused 'P' parameter
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 31 Oct 2021 03:02:11 +0000 (20:02 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 5 Nov 2021 23:58:04 +0000 (16:58 -0700)
lib/fdpgen/clusteredges.c
lib/neatogen/neatoprocs.h
lib/neatogen/neatosplines.c

index 9d0e1c16b2964f9b8a3a8b08b567d5a5807a84ac..8b4a3f433d957bec6f98b8757822b47e0ce0be3c 100644 (file)
@@ -267,7 +267,7 @@ int compoundEdges(graph_t * g, expand_t* pm, int edgetype)
                    P = NEW(path);
                    P->boxes = N_NEW(agnnodes(g) + 20 * 2 * 9, boxf);
                }
-               makeSelfArcs(P, e, GD_nodesep(g));
+               makeSelfArcs(e, GD_nodesep(g));
            } else if (ED_count(e)) {
                objl = objectList(e, pm);
                if (Plegal_arrangement(objl->obs, objl->cnt)) {
index 51ea9532b74eef19e199ec56a9bcb252906e3bc9..ae55542f4d9ebf427742f0c563ee2be5606ba4ac 100644 (file)
@@ -33,7 +33,7 @@ extern "C" {
     extern void jitter3d(Agnode_t *, int);
     extern void jitter_d(Agnode_t *, int, int);
     extern Ppoly_t *makeObstacle(node_t * n, expand_t*, boolean );
-    extern void makeSelfArcs(path * P, edge_t * e, int stepx);
+    extern void makeSelfArcs(edge_t * e, int stepx);
     extern void makeSpline(graph_t*, edge_t *, Ppoly_t **, int, boolean);
     extern void make_spring(graph_t *, Agnode_t *, Agnode_t *, double);
     extern void move_node(graph_t *, int, Agnode_t *);
index 0a54c6fa33ebc574b9bab6b3972508be5a5b83df..2966287a2a310590e0772989948e5f0cc7f17bb9 100644 (file)
@@ -234,7 +234,7 @@ static edge_t *equivEdge(Dt_t * map, edge_t * e)
  * We have to handle port labels here.
  * as well as update the bbox from edge labels.
  */
-void makeSelfArcs(path * P, edge_t * e, int stepx)
+void makeSelfArcs(edge_t * e, int stepx)
 {
     int cnt = ED_count(e);
 
@@ -630,7 +630,7 @@ static int _spline_edges(graph_t * g, expand_t* pmargin, int edgetype)
                    P = NEW(path);
                    P->boxes = N_NEW(agnnodes(g) + 20 * 2 * 9, boxf);
                }
-               makeSelfArcs(P, e, GD_nodesep(g->root));
+               makeSelfArcs(e, GD_nodesep(g->root));
            } else if (vconfig) { /* EDGETYPE_SPLINE or EDGETYPE_PLINE */
 #ifdef HAVE_GTS
                if (ED_count(e) > 1 || BOUNDARY_PORT(e)) {