]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/bar-engraver.cc
release: 1.3.131
[lilypond.git] / lily / bar-engraver.cc
index 4fad1f37c55542258f6147f20b7d9a291c35b723..540c32139609d26dd2d87d09b292f16eb86ae5f6 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   Jan Nieuwenhuizen <janneke@gnu.org>
 */
 
@@ -27,8 +27,7 @@ public:
   void request_bar (String type_str);
     
 protected:
-  virtual void do_removal_processing ();
-  void deprecated_process_music();
+  virtual void finalize ();
   virtual void stop_translation_timestep();
   virtual void create_grobs ();
 
@@ -60,7 +59,7 @@ Bar_engraver::create_bar ()
 }
 
 void
-Bar_engraver::do_removal_processing ()
+Bar_engraver::finalize ()
 {
   typeset_bar ();
 }
@@ -70,7 +69,7 @@ Bar_engraver::do_removal_processing ()
   modify whichBar in  deprecated_process_music () be typeset
 */
 void
-Bar_engraver::deprecated_process_music()
+Bar_engraver::create_grobs ()
 {
   if (!bar_p_ && gh_string_p (get_property ("whichBar")))
     {
@@ -78,12 +77,6 @@ Bar_engraver::deprecated_process_music()
     }
 }
 
-void
-Bar_engraver::create_grobs ()
-{
-  deprecated_process_music ();
-}
-
 void
 Bar_engraver::typeset_bar ()
 {