summaryrefslogtreecommitdiffstats
path: root/src/object-snapper.cpp
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2015-11-14 17:32:46 +0000
committerJabiertxof <jtx@jtx.marker.es>2015-11-14 17:32:46 +0000
commit2e2690f32680b388bee9c629ad832e9d32c28016 (patch)
tree83bd548194d712639cd60a3bd63d83db11c5da43 /src/object-snapper.cpp
parentadding default width (diff)
parentFix erase mode in no overlap mode, pointed by Ivan Louette (diff)
downloadinkscape-2e2690f32680b388bee9c629ad832e9d32c28016.tar.gz
inkscape-2e2690f32680b388bee9c629ad832e9d32c28016.zip
update to trunk
(bzr r14422.3.9)
Diffstat (limited to 'src/object-snapper.cpp')
-rw-r--r--src/object-snapper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/object-snapper.cpp b/src/object-snapper.cpp
index 7302f9de6..5b7874c61 100644
--- a/src/object-snapper.cpp
+++ b/src/object-snapper.cpp
@@ -239,7 +239,7 @@ void Inkscape::ObjectSnapper::_collectNodes(SnapSourceType const &t,
bool old_pref2 = _snapmanager->snapprefs.isTargetSnappable(SNAPTARGET_ROTATION_CENTER);
if (old_pref2) {
std::vector<SPItem*> rotationSource=_snapmanager->getRotationCenterSource();
- for ( std::vector<SPItem*>::const_iterator itemlist = rotationSource.begin(); itemlist != rotationSource.end(); itemlist++) {
+ for ( std::vector<SPItem*>::const_iterator itemlist = rotationSource.begin(); itemlist != rotationSource.end(); ++itemlist) {
if ((*i).item == *itemlist) {
// don't snap to this item's rotation center
_snapmanager->snapprefs.setTargetSnappable(SNAPTARGET_ROTATION_CENTER, false);