]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/extender-engraver.cc
release: 1.3.110
[lilypond.git] / lily / extender-engraver.cc
index c82648d9f21d66826ec7ab139da14b4d0b4d2d11..a365c25d0d6dd4860e85fc1e8cca554dc9eaca50 100644 (file)
@@ -38,7 +38,7 @@ public:
 
 protected:
   virtual void acknowledge_grob (Grob_info);
-  virtual void do_removal_processing();
+  virtual void finalize();
   virtual bool try_music (Music*);
   virtual void stop_translation_timestep();
   virtual void start_translation_timestep ();
@@ -91,12 +91,12 @@ Extender_engraver::try_music (Music* r)
 }
 
 void
-Extender_engraver::do_removal_processing ()
+Extender_engraver::finalize ()
 {
   if (extender_p_)
     {
       req_l_->origin ()->warning (_ ("unterminated extender"));
-      extender_p_->set_bound(RIGHT, unsmob_element (get_property ("currentCommandColumn")));
+      extender_p_->set_bound(RIGHT, unsmob_grob (get_property ("currentCommandColumn")));
     }
 }