summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/snapper.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/snapper.h b/src/snapper.h
index fc4b30ba0..49f277411 100644
--- a/src/snapper.h
+++ b/src/snapper.h
@@ -45,8 +45,8 @@ public:
Snapper(SnapManager *sm, ::Geom::Coord const t);
virtual ~Snapper() {}
- virtual Geom::Coord getSnapperTolerance() const {}; //returns the tolerance of the snapper in screen pixels (i.e. independent of zoom)
- virtual bool getSnapperAlwaysSnap() const {}; //if true, then the snapper will always snap, regardless of its tolerance
+ virtual Geom::Coord getSnapperTolerance() const = 0; //returns the tolerance of the snapper in screen pixels (i.e. independent of zoom)
+ virtual bool getSnapperAlwaysSnap() const = 0; //if true, then the snapper will always snap, regardless of its tolerance
/**
* \return true if this Snapper will snap at least one kind of point.