diff options
author | Han-Wen Nienhuys <hanwen@xs4all.nl> | 2005-07-08 22:16:28 +0000 |
---|---|---|
committer | Han-Wen Nienhuys <hanwen@xs4all.nl> | 2005-07-08 22:16:28 +0000 |
commit | 0563cb618fb3c564f27ce0edffe3359fc6102da6 (patch) | |
tree | 6509610b3f25b126746e6e4e5f8c88b90bae439a /lily/chord-tremolo-engraver.cc | |
parent | 7bd55dbda97fa79bd89d790b2079d41db768a73f (diff) |
* lily/include/music.hh (class Music): remove Music::duration_log()
* lily/stem-engraver.cc (make_stem): take duration log from event.
* lily/chord-tremolo-engraver.cc: don't ack note-head-interface.
Diffstat (limited to 'lily/chord-tremolo-engraver.cc')
-rw-r--r-- | lily/chord-tremolo-engraver.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lily/chord-tremolo-engraver.cc b/lily/chord-tremolo-engraver.cc index 363d756537..51140efadf 100644 --- a/lily/chord-tremolo-engraver.cc +++ b/lily/chord-tremolo-engraver.cc @@ -13,7 +13,6 @@ #include "engraver-group-engraver.hh" #include "warn.hh" #include "misc.hh" -#include "note-head.hh" #include "spanner.hh" #include "item.hh" #include "chord-tremolo-iterator.hh" @@ -170,7 +169,9 @@ Chord_tremolo_engraver::acknowledge_grob (Grob_info info) } } else if (repeat_ - && flags_ && !body_is_sequential_ && Stem::has_interface (info.grob ())) + && flags_ + && !body_is_sequential_ + && Stem::has_interface (info.grob ())) { stem_tremolo_ = make_item ("StemTremolo", repeat_->self_scm ()); stem_tremolo_->set_property ("flag-count", @@ -210,6 +211,6 @@ ADD_TRANSLATOR (Chord_tremolo_engraver, /* descr */ "Generates beams for tremolo repeats.", /* creats*/ "Beam", /* accepts */ "repeated-music", - /* acks */ "stem-interface note-head-interface", + /* acks */ "stem-interface", /* reads */ "", /* write */ ""); |