From 7308f9e1e734fc54661b3d79c4ff8e8fbeb84867 Mon Sep 17 00:00:00 2001 From: Thomas Holder Date: Sun, 3 Nov 2019 20:02:46 +0100 Subject: refactor: Eliminate SPIString::value_default - eliminate value_default - make value private (-> _value) - add value() method --- src/graphlayout.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/graphlayout.cpp') diff --git a/src/graphlayout.cpp b/src/graphlayout.cpp index b04e5f703..003767861 100644 --- a/src/graphlayout.cpp +++ b/src/graphlayout.cpp @@ -180,7 +180,7 @@ void graphlayout(std::vector const & items) { //cout << "Edge: (" << u <<","<style->marker_end.set) { - if (directed && strcmp(conn->style->marker_end.value, "none")) { + if (directed && strcmp(conn->style->marker_end.value(), "none")) { constraints.push_back(new SeparationConstraint(YDIM, v, u, ideal_connector_length * directed_edge_height_modifier)); } -- cgit v1.2.3