]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/note-heads-engraver.cc
release: 1.5.32
[lilypond.git] / lily / note-heads-engraver.cc
index b6fd727f5b9f84e18463dce8831ec6bb4dc7132d..30dffc105ec0b077aa438c4c3bbb555154dab6a3 100644 (file)
@@ -95,15 +95,6 @@ Note_heads_engraver::process_music ()
        pos += gh_scm2int (c0);
 
       note_p->set_grob_property ("staff-position",   gh_int2scm (pos));
-      if (to_boolean (get_property ("easyPlay")))
-       {
-         char s[2] = "a";
-         s[0] = (pit->notename_i_ + 2)%7 + 'a';
-
-         s[0] = toupper (s[0]);
-         note_p->set_grob_property ("note-character", ly_str02scm (s));
-       }
-      
       announce_grob (note_p,req->self_scm());
       note_p_arr_.push (note_p);
     }
@@ -137,5 +128,5 @@ ENTER_DESCRIPTION(Note_heads_engraver,
 /* descr */       "Generate one or more noteheads from Music of type Note_req.",
 /* creats*/       "NoteHead Dots",
 /* acks  */       "",
-/* reads */       "easyPlay centralCPosition",
+/* reads */       "centralCPosition",
 /* write */       "");