]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/pitch-squash-engraver.cc
release: 1.3.69
[lilypond.git] / lily / pitch-squash-engraver.cc
index a3ce1a071958efa4edfc89d6689474ed9860cd86..027e73f37e055107819d3f61a13181865198da02 100644 (file)
@@ -3,23 +3,23 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
-
 #include "staff-symbol-referencer.hh"
-#include "pitch-squash-engraver.hh"
 #include "note-head.hh"
-
-ADD_THIS_TRANSLATOR (Pitch_squash_engraver);
+#include "pitch-squash-engraver.hh"
+#include "rhythmic-head.hh"
 
 void
 Pitch_squash_engraver::acknowledge_element (Score_element_info i)
 {
-  if (Note_head *nh = dynamic_cast<Note_head *> (i.elem_l_))
+  if (Note_head::has_interface (i.elem_l_))
     {
-      Staff_symbol_referencer_interface (nh).set_position(0);
+      Staff_symbol_referencer::set_position (i.elem_l_,0);
     }
 }
 
+ADD_THIS_TRANSLATOR (Pitch_squash_engraver);
+