]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/easy-notation.cc
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / easy-notation.cc
index 6ddc00e1d39418be0c9c628388b61f3f6df8e134..fde65143457560b00f1c4325401cd13f23d558f1 100644 (file)
 #include <cctype>
 using namespace std;
 
-#include "font-interface.hh"
+#include "text-interface.hh"
 #include "grob.hh"
-#include "music.hh"
 #include "output-def.hh"
+#include "music.hh"
 #include "pitch.hh"
+#include "font-interface.hh"
 #include "staff-symbol-referencer.hh"
 #include "stem.hh"
-#include "stream-event.hh"
-#include "text-interface.hh"
 
 /*
 
@@ -34,7 +33,7 @@ Note_head::brew_ez_stencil (SCM smob)
   int log = Note_head::get_balltype (me);
 
   SCM cause = me->get_property ("cause");
-  SCM spitch = unsmob_stream_event (cause)->get_property ("pitch");
+  SCM spitch = unsmob_music (cause)->get_property ("pitch");
   Pitch *pit = unsmob_pitch (spitch);
 
   SCM idx = scm_from_int (pit->get_notename ());