diff options
author | Han-Wen Nienhuys <hanwen@xs4all.nl> | 1999-07-08 12:03:06 +0200 |
---|---|---|
committer | Han-Wen Nienhuys <hanwen@xs4all.nl> | 1999-07-08 12:03:06 +0200 |
commit | 434da79e9d7684b2b05fa92a6d808d4ea7933046 (patch) | |
tree | d3a706bd8bda40e4ce8bd83a5e38d684c58e20c8 /lily/relative-octave-music.cc | |
parent | fa3658f6c5e9fc51f6ae9286c65486975077c05c (diff) |
release: 1.1.54
Diffstat (limited to 'lily/relative-octave-music.cc')
-rw-r--r-- | lily/relative-octave-music.cc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lily/relative-octave-music.cc b/lily/relative-octave-music.cc index 7f66ab6a6b..dc0fc9906c 100644 --- a/lily/relative-octave-music.cc +++ b/lily/relative-octave-music.cc @@ -16,11 +16,16 @@ Relative_octave_music::to_relative_octave (Musical_pitch) return last_pitch_; } +Music_iterator* +Relative_octave_music::to_rhythm (Music_iterator* r) +{ + return element_l ()->to_rhythm (r); +} Relative_octave_music::Relative_octave_music(Music*p,Musical_pitch def) : Music_wrapper (p) { - last_pitch_ = element_l()->to_relative_octave (def); + last_pitch_ = element_l ()->to_relative_octave (def); } void |