]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/global-translator.cc
(score_stem_lengths): Revert oops.
[lilypond.git] / lily / global-translator.cc
index d66b6f05e9b439fbe67bca93d2a060b3e111ffa0..0c079c40d223d89d80c7cde2e8de5818f6ef7446 100644 (file)
@@ -3,10 +3,11 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
+#include <stdio.h>
 
-#include "debug.hh"
+#include "warn.hh"
 #include "music.hh"
 #include "request.hh"
 #include "music-list.hh"
@@ -41,7 +42,7 @@ Global_translator::sneaky_insert_extra_moment (Moment w)
 }
 
 int
-Global_translator::moments_left_i () const
+Global_translator::get_moments_left () const
 {
   return extra_mom_pq_.size ();
 }
@@ -62,7 +63,7 @@ Global_translator::now_mom () const
 
 
 Music_output*
-Global_translator::get_output_p ()
+Global_translator::get_output ()
 {
   return 0;
 }
@@ -87,7 +88,7 @@ Global_translator::run_iterator_on_me (Music_iterator * iter)
     prev_mom_ = now_mom_ = iter->pending_moment ();
 
   bool first = true;
-  while (iter->ok () || moments_left_i ())
+  while (iter->ok () || get_moments_left ())
     {
       Moment w;
       w.set_infinite (1);
@@ -97,14 +98,15 @@ Global_translator::run_iterator_on_me (Music_iterator * iter)
        }
 
       w = sneaky_insert_extra_moment (w);
+      
+      //      printf ("proccing %s\n ",       w.string ().to_str0 ());
 
-      cout << "Proccing " << w << endl;
 
       
       if (first)
        {
          first = false;
-         set_property (ly_symbol2scm ("measurePosition"), w.smobbed_copy ());
+         set_property ("measurePosition", w.smobbed_copy ());
        }
 
       prepare (w);