]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/request-iterator.cc
patch::: 1.1.38.jcn1: Cons
[lilypond.git] / lily / request-iterator.cc
index ca103ee062132c131563a3ef012a7c02301d67a1..0aacb6ce0420f28edbb3b74072e77ea9f58cba75 100644 (file)
@@ -63,17 +63,17 @@ Request_chord_iterator::do_process_and_next (Moment mom)
 {
   if (first_b_)
     {
-      for (Cons<Music> *i = elt_l ()->music_p_list_p_->head_; i; i = i->next_)
+      for (Cons<Music> *i = elt_l ()->music_p_list_p_->head_cons_p_; i; i = i->next_cons_p_)
        {
-         if (Request * req_l = dynamic_cast<Request*> (i->car_))
+         if (Request * req_l = dynamic_cast<Request*> (i->car_p_))
            {
              bool gotcha = report_to_l()->try_music (req_l);
              if (!gotcha)
                req_l->warning (_f ("junking request: `%s\'", classname( req_l)));
            }
          else
-           i->car_->warning (_f ("Huh? Not a Request: `%s\'",
-                                  classname (i->car_)));
+           i->car_p_->warning (_f ("Huh? Not a Request: `%s\'",
+                                  classname (i->car_p_)));
        }
       first_b_ = false;
     }