diff options
| author | Kris De Gussem <kris.degussem@gmail.com> | 2015-10-29 22:24:26 +0000 |
|---|---|---|
| committer | Kris De Gussem <Kris.De.Gussem@hotmail.com> | 2015-10-29 22:24:26 +0000 |
| commit | fd5fce801e86b3e9ab0d56a702e89b11dbf7484e (patch) | |
| tree | eede96d54a785014bbd15af59fea2980704fa891 /src/snap.cpp | |
| parent | patch for bug 1511508 (diff) | |
| download | inkscape-fd5fce801e86b3e9ab0d56a702e89b11dbf7484e.tar.gz inkscape-fd5fce801e86b3e9ab0d56a702e89b11dbf7484e.zip | |
static code analysis
(bzr r14436)
Diffstat (limited to '')
| -rw-r--r-- | src/snap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/snap.cpp b/src/snap.cpp index 5a4a047b2..4721283c3 100644 --- a/src/snap.cpp +++ b/src/snap.cpp @@ -710,7 +710,7 @@ void SnapManager::setupIgnoreSelection(SPDesktop const *desktop, Inkscape::Selection *sel = _desktop->selection; std::vector<SPItem*> const items = sel->itemList(); - for (std::vector<SPItem*>::const_iterator i=items.begin();i!=items.end();i++) { + for (std::vector<SPItem*>::const_iterator i=items.begin();i!=items.end();++i) { _items_to_ignore.push_back(*i); } } |
