]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/repeat-acknowledge-engraver.cc
``slikken kreng''
[lilypond.git] / lily / repeat-acknowledge-engraver.cc
index a62d7a37d1d3fc300219854413915793717fc9eb..8a95a7ba329b6f1c15efda2c0be960124380c1c1 100644 (file)
@@ -38,7 +38,7 @@ void
 Repeat_acknowledge_engraver::initialize ()
 {
   first_b_ = true;
-  daddy_trans_l_->set_property ("repeatCommands", SCM_EOL);
+  daddy_trans_->set_property ("repeatCommands", SCM_EOL);
 }
 
 
@@ -50,9 +50,9 @@ void
 Repeat_acknowledge_engraver::start_translation_timestep ()
 {
   first_b_ = true;
-  Translator_group * tr = daddy_trans_l_->where_defined (ly_symbol2scm ("repeatCommands"));
+  Translator_group * tr = daddy_trans_->where_defined (ly_symbol2scm ("repeatCommands"));
   if (!tr)
-    tr = daddy_trans_l_;
+    tr = daddy_trans_;
 
   tr->set_property ("repeatCommands", SCM_EOL);
 }
@@ -105,7 +105,7 @@ Repeat_acknowledge_engraver::process_music ()
     {
       if (s != "" || (volta_found && !gh_string_p (wb)))
        {
-         daddy_trans_l_->set_property ("whichBar", ly_str02scm (s.ch_C ()));
+         daddy_trans_->set_property ("whichBar", ly_str02scm (s.to_str0 ()));
        }
     }
 }