summaryrefslogtreecommitdiffstats
path: root/src/graphlayout/graphlayout.cpp
diff options
context:
space:
mode:
authormjwybrow <mjwybrow@users.sourceforge.net>2006-02-14 00:36:28 +0000
committermjwybrow <mjwybrow@users.sourceforge.net>2006-02-14 00:36:28 +0000
commitfa668afcbd7dc12ef748e0d0b4fd62fb9441c13e (patch)
treedd81610ccafce158141f5e63505aeac2c4fe3b6e /src/graphlayout/graphlayout.cpp
parentextending the font selector preview string (patch #1240559 by cmarqu) (diff)
downloadinkscape-fa668afcbd7dc12ef748e0d0b4fd62fb9441c13e.tar.gz
inkscape-fa668afcbd7dc12ef748e0d0b4fd62fb9441c13e.zip
* src/graphlayout/graphlayout.cpp, src/conn-avoid-ref.cpp,
src/conn-avoid-ref.h, src/libavoid/connector.cpp, src/libavoid/connector.h: Change the behaviour and naming of some connector querying code after feedback from Tim Dwyer in implementing graph drawing functionality. (bzr r136)
Diffstat (limited to '')
-rw-r--r--src/graphlayout/graphlayout.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graphlayout/graphlayout.cpp b/src/graphlayout/graphlayout.cpp
index 77452aff2..112a942a7 100644
--- a/src/graphlayout/graphlayout.cpp
+++ b/src/graphlayout/graphlayout.cpp
@@ -96,7 +96,7 @@ void graphlayout(GSList const *const items) {
using NR::X; using NR::Y;
SPItem *itu=*it;
Vertex u=nodelookup[itu->id];
- GSList *nlist=itu->avoidRef->getAttachedConnectors(Avoid::ConnRef::runningFrom);
+ GSList *nlist=itu->avoidRef->getAttachedShapes(Avoid::ConnRef::runningFrom);
std::list<SPItem *> neighbours;
neighbours.insert<GSListConstIterator<SPItem *> >(neighbours.end(),nlist,NULL);
for (std::list<SPItem *>::iterator ne(neighbours.begin());