]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/note-column.cc
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / note-column.cc
index 8d4204b674a7a941e2b64df18b797207a7ef8237..ba8ebd6fd8c700fbe4d1fd28160631ac478068c6 100644 (file)
@@ -60,7 +60,7 @@ Note_column::head_positions_interval (Grob *me)
   iv.set_empty ();
 
   extract_grob_set (me, "note-heads", heads);
-  for (int i = 0; i < heads.size (); i++)
+  for (vsize i = 0; i < heads.size (); i++)
     {
       Grob *se = heads[i];
 
@@ -162,7 +162,7 @@ Note_column::accidentals (Grob *me)
 {
   extract_grob_set (me, "note-heads", heads);
   Grob *acc = 0;
-  for (int i = 0; i < heads.size (); i++)
+  for (vsize i = 0; i < heads.size (); i++)
     {
       Grob *h = heads[i];
       acc = h ? unsmob_grob (h->get_object ("accidental-grob")) : 0;