]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/request-chord-iterator.cc
patch::: 1.5.22.jcn4
[lilypond.git] / lily / request-chord-iterator.cc
index 118279299b768acc65af42ae4fc06399350f6888..e9a103808950a3951d14ed0c17ad54115c71e99d 100644 (file)
@@ -33,16 +33,16 @@ Request_chord_iterator::get_req_translator_l ()
 }
 
 void
-Request_chord_iterator::construct_children()
+Request_chord_iterator::construct_children ()
 {
   Simple_music_iterator::construct_children ();
-  get_req_translator_l();
+  get_req_translator_l ();
 }
 
 Request_chord*
 Request_chord_iterator::elt_l () const
 {
-  return (Request_chord*) music_l_;
+  return (Request_chord*) music_l ();
 }
 
 SCM
@@ -51,11 +51,11 @@ Request_chord_iterator::get_music (Moment) const
   SCM s = SCM_EOL;
   if (last_processed_mom_ < Moment (0))
     {
-      Music_sequence * ms = dynamic_cast<Music_sequence*> (music_l_);
+      Music_sequence * ms = dynamic_cast<Music_sequence*> (music_l ());
      
-      for (SCM m = ms->music_list (); gh_pair_p (m); m = gh_cdr (m))
+      for (SCM m = ms->music_list (); gh_pair_p (m); m = ly_cdr (m))
        {
-         s = gh_cons (gh_car (m) , s);
+         s = gh_cons (ly_car (m) , s);
        }
     }
   return s;
@@ -66,17 +66,17 @@ Request_chord_iterator::process (Moment m)
 {
   if (last_processed_mom_ < Moment (0))
     {
-      for (SCM s = dynamic_cast<Music_sequence *> (music_l_)->music_list ();
-          gh_pair_p (s);  s = gh_cdr (s))
+      for (SCM s = dynamic_cast<Music_sequence *> (music_l ())->music_list ();
+          gh_pair_p (s);  s = ly_cdr (s))
        {
-         Music *mus = unsmob_music (gh_car (s));
+         Music *mus = unsmob_music (ly_car (s));
 
          bool gotcha = try_music (mus);
          if (!gotcha)
-           mus->origin ()->warning (_f ("Junking request: `%s'", classname(mus)));
+           mus->origin ()->warning (_f ("Junking request: `%s'", classname (mus)));
        }
     }
   skip (m);
 }
 
-IMPLEMENT_CTOR_CALLBACK(Request_chord_iterator);
+IMPLEMENT_CTOR_CALLBACK (Request_chord_iterator);