Code

Filter effects dialog:
[inkscape.git] / src / guide-snapper.cpp
index 9fd13705c26cb2ff12ded4e823a534a69e3145fb..1e4eb02d835e49541de517e29900d7198587f292 100644 (file)
@@ -26,7 +26,7 @@ Inkscape::GuideSnapper::LineList Inkscape::GuideSnapper::_getSnapLines(NR::Point
 {
     LineList s;
 
-    if ( NULL == _named_view || willSnapSomething() == false) {
+    if ( NULL == _named_view || ThisSnapperMightSnap() == false) {
         return s;
     }
 
@@ -47,7 +47,7 @@ Inkscape::GuideSnapper::LineList Inkscape::GuideSnapper::_getSnapLines(NR::Point
 /**
  *  \return true if this Snapper will snap at least one kind of point.
  */
-bool Inkscape::GuideSnapper::willSnapSomething() const
+bool Inkscape::GuideSnapper::ThisSnapperMightSnap() const
 {
     return _named_view == NULL ? false : (_enabled && _snap_to != 0 && _named_view->showguides);
 }