diff options
| author | mjwybrow <mjwybrow@users.sourceforge.net> | 2006-02-14 00:36:28 +0000 |
|---|---|---|
| committer | mjwybrow <mjwybrow@users.sourceforge.net> | 2006-02-14 00:36:28 +0000 |
| commit | fa668afcbd7dc12ef748e0d0b4fd62fb9441c13e (patch) | |
| tree | dd81610ccafce158141f5e63505aeac2c4fe3b6e /src/graphlayout/graphlayout.cpp | |
| parent | extending the font selector preview string (patch #1240559 by cmarqu) (diff) | |
| download | inkscape-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.cpp | 2 |
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()); |
