summaryrefslogtreecommitdiffstats
path: root/src/snapped-point.h
diff options
context:
space:
mode:
authorRalf Stephan <ralf@ark.in-berlin.de>2006-01-18 17:11:56 +0000
committerrwst <rwst@users.sourceforge.net>2006-01-18 17:11:56 +0000
commitbd68b14b6bf32d009012b431f6271e53ea6bc1e1 (patch)
treee1235b11f8966b65353033927fa78fc67aaa5182 /src/snapped-point.h
parentadapt includes to glib 2.9 changes (diff)
downloadinkscape-bd68b14b6bf32d009012b431f6271e53ea6bc1e1.tar.gz
inkscape-bd68b14b6bf32d009012b431f6271e53ea6bc1e1.zip
optimized includes
(bzr r16)
Diffstat (limited to 'src/snapped-point.h')
-rw-r--r--src/snapped-point.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/snapped-point.h b/src/snapped-point.h
index 89eceb991..0669ddd21 100644
--- a/src/snapped-point.h
+++ b/src/snapped-point.h
@@ -25,19 +25,19 @@ class SnappedPoint
{
public:
SnappedPoint() {}
- SnappedPoint(NR::Point p, NR::Coord d);
+ SnappedPoint(::NR::Point p, ::NR::Coord d);
~SnappedPoint();
void addHighlightGroup(HighlightGroup *group);
void addHighlightGroups(std::vector<HighlightGroup*> *groups);
- NR::Coord getDistance() const;
+ ::NR::Coord getDistance() const;
NR::Point getPoint() const;
std::vector<HighlightGroup*> getHighlightGroups() const;
private:
- NR::Coord _distance;
- NR::Point _point;
+ ::NR::Coord _distance;
+ ::NR::Point _point;
std::vector<HighlightGroup*> _hightlight_groups;
};