]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/dot-column-engraver.cc
* Documentation/user/changing-defaults.itely (Changing defaults):
[lilypond.git] / lily / dot-column-engraver.cc
index 55956b3eb44659aa0b8c470709df65f3aca4fefa..ae36be53b602d6cfbfbe43d0a36d779eaae51674 100644 (file)
@@ -3,7 +3,7 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1998--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1998--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
@@ -47,7 +47,7 @@ Dot_column_engraver::stop_translation_timestep ()
        See [Ross, p 171]
        */
       if (stem_)
-       dotcol_->set_grob_property ("stem", stem_->self_scm ());
+       dotcol_->set_property ("stem", stem_->self_scm ());
       
       typeset_grob (dotcol_);
       dotcol_ =0;
@@ -59,12 +59,12 @@ Dot_column_engraver::stop_translation_timestep ()
 void
 Dot_column_engraver::acknowledge_grob (Grob_info info)
 {
-  Grob *d = unsmob_grob (info.grob_->get_grob_property ("dot"));
+  Grob *d = unsmob_grob (info.grob_->get_property ("dot"));
   if (d)
     {
       if (!dotcol_)
        {
-         dotcol_ = new Item (get_property ("DotColumn"));
+         dotcol_ = make_item ("DotColumn");
          announce_grob(dotcol_, SCM_EOL);
        }