summaryrefslogtreecommitdiffstats
path: root/src/guide-snapper.h
diff options
context:
space:
mode:
authorDiederik van Lierop <mail@diedenrezi.nl>2008-08-11 04:53:15 +0000
committerdvlierop2 <dvlierop2@users.sourceforge.net>2008-08-11 04:53:15 +0000
commitb1597d6f47f64eef7d17b7b614056edd64692130 (patch)
treeb0f4bbc9d67f2afe50125afe915ec1062c0d6b98 /src/guide-snapper.h
parentpatch from bug 169004 (diff)
downloadinkscape-b1597d6f47f64eef7d17b7b614056edd64692130.tar.gz
inkscape-b1597d6f47f64eef7d17b7b614056edd64692130.zip
Move all of the snapper code to 2geom
(bzr r6606)
Diffstat (limited to 'src/guide-snapper.h')
-rw-r--r--src/guide-snapper.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/guide-snapper.h b/src/guide-snapper.h
index 0605bdb97..df6086ccf 100644
--- a/src/guide-snapper.h
+++ b/src/guide-snapper.h
@@ -28,12 +28,12 @@ namespace Inkscape
class GuideSnapper : public LineSnapper
{
public:
- GuideSnapper(SPNamedView const *nv, NR::Coord const d);
+ GuideSnapper(SPNamedView const *nv, Geom::Coord const d);
bool ThisSnapperMightSnap() const;
private:
- LineList _getSnapLines(NR::Point const &p) const;
- void _addSnappedLine(SnappedConstraints &sc, NR::Point const snapped_point, NR::Coord const snapped_distance, NR::Point const normal_to_line, NR::Point const point_on_line) const;
+ LineList _getSnapLines(Geom::Point const &p) const;
+ void _addSnappedLine(SnappedConstraints &sc, Geom::Point const snapped_point, Geom::Coord const snapped_distance, Geom::Point const normal_to_line, Geom::Point const point_on_line) const;
};
}