diff options
| author | Kris De Gussem <kris.degussem@gmail.com> | 2014-01-12 10:53:01 +0000 |
|---|---|---|
| committer | Kris <Kris.De.Gussem@hotmail.com> | 2014-01-12 10:53:01 +0000 |
| commit | 6fda1bce5d95b0966e16fda00e84c780125a5884 (patch) | |
| tree | 494e01839f7188547ab8996087e20375e6940586 /src/line-snapper.cpp | |
| parent | pass class variables by reference for performance (diff) | |
| download | inkscape-6fda1bce5d95b0966e16fda00e84c780125a5884.tar.gz inkscape-6fda1bce5d95b0966e16fda00e84c780125a5884.zip | |
pass class variables by reference for performance
(bzr r12917)
Diffstat (limited to 'src/line-snapper.cpp')
| -rw-r--r-- | src/line-snapper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/line-snapper.cpp b/src/line-snapper.cpp index d0c4c4583..930b7fca9 100644 --- a/src/line-snapper.cpp +++ b/src/line-snapper.cpp @@ -160,7 +160,7 @@ void Inkscape::LineSnapper::constrainedSnap(IntermSnapResults &isr, // Will only be overridden in the guide-snapper class, because grid lines don't have an origin; the // grid-snapper classes will use this default empty method -void Inkscape::LineSnapper::_addSnappedLinesOrigin(IntermSnapResults &/*isr*/, Geom::Point const /*origin*/, Geom::Coord const /*snapped_distance*/, SnapSourceType const &/*source_type*/, long /*source_num*/, bool /*constrained_snap*/) const +void Inkscape::LineSnapper::_addSnappedLinesOrigin(IntermSnapResults &/*isr*/, Geom::Point const &/*origin*/, Geom::Coord const &/*snapped_distance*/, SnapSourceType const &/*source_type*/, long /*source_num*/, bool /*constrained_snap*/) const { } |
