diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2008-08-01 19:15:16 +0000 |
|---|---|---|
| committer | johanengelen <johanengelen@users.sourceforge.net> | 2008-08-01 19:15:16 +0000 |
| commit | a45a0820bec31c1611da0c8de6ecfec218d2419a (patch) | |
| tree | 39a36f8323928a800aebc7266cce7e3bfadec308 /src/satisfied-guide-cns.cpp | |
| parent | replace matrix division code. (diff) | |
| download | inkscape-a45a0820bec31c1611da0c8de6ecfec218d2419a.tar.gz inkscape-a45a0820bec31c1611da0c8de6ecfec218d2419a.zip | |
2geomify a lot of NR::Points to Geom::Point
(bzr r6513)
Diffstat (limited to 'src/satisfied-guide-cns.cpp')
| -rw-r--r-- | src/satisfied-guide-cns.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/satisfied-guide-cns.cpp b/src/satisfied-guide-cns.cpp index 112930925..640ffa79f 100644 --- a/src/satisfied-guide-cns.cpp +++ b/src/satisfied-guide-cns.cpp @@ -13,7 +13,7 @@ void satisfied_guide_cns(SPDesktop const &desktop, for (GSList const *l = nv.guides; l != NULL; l = l->next) { SPGuide &g = *SP_GUIDE(l->data); for (unsigned int i = 0; i < snappoints.size(); ++i) { - if (approx_equal( sp_guide_distance_from_pt(&g, snappoints[i].to_2geom()), 0) ) { + if (approx_equal( sp_guide_distance_from_pt(&g, snappoints[i]), 0) ) { cns.push_back(SPGuideConstraint(&g, i)); } } |
