]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/bar-check-iterator.cc
* lily/open-type-font.cc (load_scheme_table): new function
[lilypond.git] / lily / bar-check-iterator.cc
index 343bcd229b49c297940082522b935178afbab9fe..1cb94582493abb33bf57bc84ae56daab61953bc9 100644 (file)
@@ -20,37 +20,37 @@ class Bar_check_iterator : Simple_music_iterator
 {
 public:
   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 ())
     {
       Context *tr = get_outlet ();
 
       SCM mp = tr->get_property ("measurePosition");
-      SCM sync= tr->get_property ("barCheckSynchronize");
+      SCM sync = tr->get_property ("barCheckSynchronize");
 
-      Moment * where =unsmob_moment (mp);
+      Moment * where = unsmob_moment (mp);
       if (!where)
        return;
       
       if (where->main_part_)
        {
-         bool warn =true;
+         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 ());
            }