X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fcontext-specced-music.cc;h=620c2e4a391bca500d685322e96249cc1c260994;hb=e02ff353e9bbf2ac0924450770ac75eb88960aac;hp=cf3f520773fcf815c169d1d20a163b8950f01f9c;hpb=f2f5eb23db6c2daf882957dcfe472657c8bdb1b6;p=lilypond.git diff --git a/lily/context-specced-music.cc b/lily/context-specced-music.cc index cf3f520773..620c2e4a39 100644 --- a/lily/context-specced-music.cc +++ b/lily/context-specced-music.cc @@ -3,13 +3,22 @@ source file of the GNU LilyPond music typesetter - (c) 1999--2000 Han-Wen Nienhuys + (c) 1999--2002 Han-Wen Nienhuys */ #include "context-specced-music.hh" +Context_specced_music::Context_specced_music (SCM m) + : Music_wrapper (m) +{ + set_mus_property ("type", + ly_symbol2scm ("context-specced-music")); +} -Context_specced_music::Context_specced_music(Music *m) - : Music_wrapper (m) + +Context_specced_music::Context_specced_music () { - set_mus_property ("type", ly_symbol2scm ("context-specced-music")); + set_mus_property ("type", + ly_symbol2scm ("context-specced-music")); } + +ADD_MUSIC (Context_specced_music);