summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog
diff options
context:
space:
mode:
authorMarc Jeanmougin <marc@jeanmougin.fr>2015-12-07 23:45:01 +0000
committerMarc Jeanmougin <marcjeanmougin@free.fr>2015-12-07 23:45:01 +0000
commita0bef55aef1f82f56535cfadf30247657ccc3f90 (patch)
treea5523d84140303998f86072c6263e16af6d5d15e /src/ui/dialog
parentcppification : GHashMaps replaced by stl maps. getResouceList now gives a std... (diff)
parentstatic code analysis (diff)
downloadinkscape-a0bef55aef1f82f56535cfadf30247657ccc3f90.tar.gz
inkscape-a0bef55aef1f82f56535cfadf30247657ccc3f90.zip
update to trunk
(bzr r14504.1.7)
Diffstat (limited to 'src/ui/dialog')
-rw-r--r--src/ui/dialog/grid-arrange-tab.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/dialog/grid-arrange-tab.cpp b/src/ui/dialog/grid-arrange-tab.cpp
index 53c25c3d5..639e463ea 100644
--- a/src/ui/dialog/grid-arrange-tab.cpp
+++ b/src/ui/dialog/grid-arrange-tab.cpp
@@ -305,7 +305,7 @@ g_print("\n row = %f col = %f selection x= %f selection y = %f", total_row_h
GSList *current_row = NULL;
col_cnt = 0;
- for(;it!=sorted.end()&&col_cnt<NoOfCols;it++) {
+ for(;it!=sorted.end()&&col_cnt<NoOfCols;++it) {
current_row = g_slist_append (current_row, *it);
col_cnt++;
}