]> granicus.if.org Git - graphviz/commitdiff
dotgen cloneNode: remove unused 'flipped' parameter
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 17 Jul 2022 22:43:31 +0000 (15:43 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 23 Jul 2022 00:14:28 +0000 (17:14 -0700)
lib/dotgen/dotsplines.c

index 5e5a43a2b48f0c37d532b71b10cb28045a0926d6..3090646b9bbf16d6e08ccda8be46dd1e72cd9aaf 100644 (file)
@@ -942,13 +942,10 @@ cleanupCloneGraph (graph_t* g, attr_state_t* attr_state)
 }
 
 /* cloneNode:
- * If flipped is true, original graph has rankdir=LR or RL.
- * In this case, records change shape, so we wrap a record node's
- * label in "{...}" to prevent this.
+ * If original graph has rankdir=LR or RL, records change shape,
+ * so we wrap a record node's label in "{...}" to prevent this.
  */
-static node_t*
-cloneNode (graph_t* g, node_t* orign, int flipped)
-{
+static node_t *cloneNode(graph_t *g, node_t *orign) {
     node_t* n = agnode(g, agnameof(orign),1);
     agbindrec(n, "Agnodeinfo_t", sizeof(Agnodeinfo_t), true);
     agcopyattr (orign, n);
@@ -1298,8 +1295,8 @@ make_flat_adj_edges(graph_t* g, path* P, edge_t** edges, int ind, int cnt, edge_
         tn = hn;
         hn = n;
     }
-    auxt = cloneNode(subg, tn, GD_flip(g)); 
-    auxh = cloneNode(auxg, hn, GD_flip(g)); 
+    auxt = cloneNode(subg, tn);
+    auxh = cloneNode(auxg, hn);
     for (i = 0; i < cnt; i++) {
        e = edges[ind + i];
        for (; ED_edge_type(e) != NORMAL; e = ED_to_orig(e));