diff options
Diffstat (limited to 'src/gui/GraphView.cpp')
-rw-r--r-- | src/gui/GraphView.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/GraphView.cpp b/src/gui/GraphView.cpp index 119438e6..9a755ffe 100644 --- a/src/gui/GraphView.cpp +++ b/src/gui/GraphView.cpp @@ -83,7 +83,7 @@ GraphView::set_graph(SharedPtr<const GraphModel> graph) _poly_spin->set_increments(1, 4); _poly_spin->set_value(graph->internal_poly()); - for (GraphObject::Properties::const_iterator i = graph->properties().begin(); + for (Node::Properties::const_iterator i = graph->properties().begin(); i != graph->properties().end(); ++i) property_changed(i->first, i->second); |