summaryrefslogtreecommitdiffstats
path: root/src/extension/execution-env.cpp
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2015-10-30 00:40:00 +0000
committerJabiertxof <jtx@jtx.marker.es>2015-10-30 00:40:00 +0000
commit8b7000a2836508dad19b7d71a9262e9a24f35454 (patch)
tree581951a22708db041497a41a46dbfb937a7625e0 /src/extension/execution-env.cpp
parentAdd optional presure to width and to size (diff)
parentstatic code analysis (diff)
downloadinkscape-8b7000a2836508dad19b7d71a9262e9a24f35454.tar.gz
inkscape-8b7000a2836508dad19b7d71a9262e9a24f35454.zip
update to trunk
(bzr r14422.1.28)
Diffstat (limited to 'src/extension/execution-env.cpp')
-rw-r--r--src/extension/execution-env.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extension/execution-env.cpp b/src/extension/execution-env.cpp
index 29c2b5537..27d19fdff 100644
--- a/src/extension/execution-env.cpp
+++ b/src/extension/execution-env.cpp
@@ -61,7 +61,7 @@ ExecutionEnv::ExecutionEnv (Effect * effect, Inkscape::UI::View::View * doc, Imp
if (desktop != NULL) {
std::vector<SPItem*> selected = desktop->getSelection()->itemList();
- for(std::vector<SPItem*>::const_iterator x = selected.begin(); x != selected.end(); x++){
+ for(std::vector<SPItem*>::const_iterator x = selected.begin(); x != selected.end(); ++x){
Glib::ustring selected_id;
selected_id = (*x)->getId();
_selected.insert(_selected.end(), selected_id);