]> git.donarmstrong.com Git - lilypond.git/blobdiff - src/staff.cc
release: 0.0.16
[lilypond.git] / src / staff.cc
index 521d31635dbdb5a6d848bcb38ecde545a9c99913..cbe0e59bbb77130da3d916c76c82ce6776488d78 100644 (file)
@@ -30,12 +30,12 @@ Staff::paper() const
 void
 Staff::clean_cols()
 {
-    PCursor<Staff_column *> stc(cols);
-    for(; stc.ok(); ){
-       if (!stc->score_column->used())
-           stc.del();
+    PCursor<Staff_column *> i(cols);
+    for(; i.ok(); ){
+       if (!i->score_column->used())
+           i.del();
        else
-           stc++;
+           i++;
     }
 }