diff options
| author | Jabier Arraiza Cenoz <jabier.arraiza@marker.es> | 2015-03-03 22:54:42 +0000 |
|---|---|---|
| committer | Jabiertxof <jtx@jtx.marker.es> | 2015-03-03 22:54:42 +0000 |
| commit | 60327dd47f6bbbb0d30c13c905117bd8b3be5e5d (patch) | |
| tree | 9f8299ca225cab90d844230b54889bae603b2a69 /src/2geom/pointwise.cpp | |
| parent | update to trunk (diff) | |
| download | inkscape-60327dd47f6bbbb0d30c13c905117bd8b3be5e5d.tar.gz inkscape-60327dd47f6bbbb0d30c13c905117bd8b3be5e5d.zip | |
added helper paths and fixed some bugs
(bzr r13645.1.30)
Diffstat (limited to 'src/2geom/pointwise.cpp')
| -rw-r--r-- | src/2geom/pointwise.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/2geom/pointwise.cpp b/src/2geom/pointwise.cpp index 3c359eddc..0115ea103 100644 --- a/src/2geom/pointwise.cpp +++ b/src/2geom/pointwise.cpp @@ -124,7 +124,7 @@ Pointwise::findSatellites(int A, int B) const } std::vector<Satellite> -Pointwise::findClosingSatellites(int A, int B) const +Pointwise::findClosingSatellites(int A) const { std::vector<Satellite> ret; bool finded = false; @@ -151,7 +151,7 @@ Pointwise::findPeviousSatellites(int A, int B) const if(!_satellites[i].second.getIsStart()){ ret = findSatellites(_satellites[i-1].first, B); } else { - ret = findClosingSatellites(_satellites[i].first, B); + ret = findClosingSatellites(_satellites[i].first); } } } |
