]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/separating-line-group-engraver.cc
release: 1.5.7
[lilypond.git] / lily / separating-line-group-engraver.cc
index 0de0777d9d31a2eb43e9b92ebb0e75a93220b758..6c3811b8e2323d4a15aa4246277c13474f0cebc0 100644 (file)
@@ -20,12 +20,6 @@ protected:
   Item * break_malt_p_;
   Item * musical_malt_p_;
 
-  /*
-    malt_p_ : we used to have a Single_malt_grouping_item
-    
-   */
-  Item * last_step_musical_malt_p_;
-  
   Spanner * sep_span_p_;
   
   virtual void acknowledge_grob (Grob_info);
@@ -39,7 +33,6 @@ public:
 
 Separating_line_group_engraver::Separating_line_group_engraver ()
 {
-  last_step_musical_malt_p_ = 0;
   sep_span_p_ = 0;
   break_malt_p_ = 0;
   musical_malt_p_ =0;
@@ -102,26 +95,12 @@ Separating_line_group_engraver::stop_translation_timestep ()
     }
 
   if (musical_malt_p_)
-      {
+    {
       Separating_group_spanner::add_spacing_unit (sep_span_p_, musical_malt_p_);
-
-      if (last_step_musical_malt_p_)
-       {
-         Paper_column *col = 
-           last_step_musical_malt_p_->column_l();
-         SCM newtup = gh_cons (last_step_musical_malt_p_->self_scm (),
-                               musical_malt_p_->self_scm ());
-         col->set_grob_property ("spacing-sequence",
-                                 gh_cons (newtup,
-                                          col->get_grob_property ("spacing-sequence")));
-       }
-      
       typeset_grob (musical_malt_p_);
-      }
-  last_step_musical_malt_p_ = musical_malt_p_;
-  musical_malt_p_ =0;
-
+    }
 
+  musical_malt_p_ =0;
 }