]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/bar-check-iterator.cc
Configure only pristine build tree or on user
[lilypond.git] / lily / bar-check-iterator.cc
index 16b03abf2c9fe43e4e788d9e08f2cdfe855c34b5..76fdc53675d831234f34ba79d29e026b453478b2 100644 (file)
@@ -4,13 +4,13 @@
 
      source file of the GNU LilyPond music typesetter
 
-     (c) 2001--2003  Han-Wen Nienhuys <hanwen@cs.uu.nl>
+     (c) 2001--2004  Han-Wen Nienhuys <hanwen@cs.uu.nl>
 
  */
 
 #include "simple-music-iterator.hh"
 #include "event.hh"
-#include "translator-group.hh"
+#include "context.hh"
 
 /*
   Check bar checks. We do this outside the engravers so that you can
 class Bar_check_iterator : Simple_music_iterator
 {
 public:
-  VIRTUAL_COPY_CONS(Bar_check_iterator);
   virtual void process (Moment);
-  Bar_check_iterator( );
-  DECLARE_SCHEME_CALLBACK(constructor, ());
+  Bar_check_iterator ( );
+  DECLARE_SCHEME_CALLBACK (constructor, ());
 };
 
-IMPLEMENT_CTOR_CALLBACK(Bar_check_iterator);
+IMPLEMENT_CTOR_CALLBACK (Bar_check_iterator);
 
-Bar_check_iterator::Bar_check_iterator()
+Bar_check_iterator::Bar_check_iterator ()
 {
 }
 
 void
 Bar_check_iterator::process (Moment m)
 {
-  Simple_music_iterator::process(m);
+  Simple_music_iterator::process (m);
   if (!m.to_bool ())
     {
-      Translator_group *tr = report_to ();
+      Context *tr = get_outlet ();
 
       SCM mp = tr->get_property ("measurePosition");
       SCM sync= tr->get_property ("barCheckSynchronize");
@@ -51,7 +50,7 @@ Bar_check_iterator::process (Moment m)
          bool warn =true;
          if (to_boolean (sync))
            {
-             tr = tr->where_defined (ly_symbol2scm("measurePosition"));
+             tr = tr->where_defined (ly_symbol2scm ("measurePosition"));
              Moment zero;
              tr->set_property ("measurePosition", zero.smobbed_copy ());
            }