]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/output-property-engraver.cc
(process_acknowledged_grobs): don't
[lilypond.git] / lily / output-property-engraver.cc
index dc7207a3ed155b0b3d0f195b3d9b576335d37be4..c80cc9c051cd6ad23e0d843300a36fef6d972247 100644 (file)
@@ -49,12 +49,12 @@ Output_property_engraver::acknowledge_grob (Grob_info inf)
          /*
            should typecheck pred. 
          */
-         SCM result = scm_call_1 (pred, inf.grob_->self_scm ());
+         SCM result = scm_call_1 (pred, inf.grob ()->self_scm ());
          if (to_boolean (result))
            {
              SCM sym = o->get_property ("grob-property");
              SCM val = o->get_property ("grob-value");
-             inf.grob_->internal_set_property (sym, val);
+             inf.grob ()->internal_set_property (sym, val);
            }
        }
       else
@@ -62,7 +62,7 @@ Output_property_engraver::acknowledge_grob (Grob_info inf)
          Context * d = inf.context ();
          SCM proc = o->get_property ("procedure");
          scm_call_3 (proc,
-                     inf.grob_->self_scm (),
+                     inf.grob ()->self_scm (),
                      d->self_scm (), 
                      context ()->self_scm ());
        }