diff options
| author | Ralf Stephan <ralf@ark.in-berlin.de> | 2006-01-18 17:11:56 +0000 |
|---|---|---|
| committer | rwst <rwst@users.sourceforge.net> | 2006-01-18 17:11:56 +0000 |
| commit | bd68b14b6bf32d009012b431f6271e53ea6bc1e1 (patch) | |
| tree | e1235b11f8966b65353033927fa78fc67aaa5182 /src/snapper.h | |
| parent | adapt includes to glib 2.9 changes (diff) | |
| download | inkscape-bd68b14b6bf32d009012b431f6271e53ea6bc1e1.tar.gz inkscape-bd68b14b6bf32d009012b431f6271e53ea6bc1e1.zip | |
optimized includes
(bzr r16)
Diffstat (limited to 'src/snapper.h')
| -rw-r--r-- | src/snapper.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/snapper.h b/src/snapper.h index 4c71be7f2..02f7cb7e9 100644 --- a/src/snapper.h +++ b/src/snapper.h @@ -27,7 +27,7 @@ namespace Inkscape class Snapper { public: - Snapper(SPNamedView const *nv, NR::Coord const d); + Snapper(SPNamedView const *nv, ::NR::Coord const d); virtual ~Snapper() {} /// Point types to snap. @@ -38,10 +38,10 @@ public: typedef std::pair<PointType, NR::Point> PointWithType; void setSnapTo(PointType t, bool s); - void setDistance(NR::Coord d); + void setDistance(::NR::Coord d); bool getSnapTo(PointType t) const; - NR::Coord getDistance() const; + ::NR::Coord getDistance() const; bool willSnapSomething() const; @@ -93,7 +93,7 @@ private: NR::Point const &c, std::list<SPItem const *> const &it) const = 0; - NR::Coord _distance; ///< snap distance (desktop coordinates) + ::NR::Coord _distance; ///< snap distance (desktop coordinates) int _snap_to; ///< bitmap of point types that we will snap to }; |
