X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fcontext-specced-music-iterator.cc;h=7d092334963f983a54ec1af8053df1d19365132c;hb=5b4b0d6e9a197e8f9eb085b7c2ad78b8be3e5cfc;hp=9036d72fb6d616fa90bd2dbac66f9a8b690d169e;hpb=31568c504806f35aac420a394c9eab07abd9faa7;p=lilypond.git diff --git a/lily/context-specced-music-iterator.cc b/lily/context-specced-music-iterator.cc index 9036d72fb6..7d09233496 100644 --- a/lily/context-specced-music-iterator.cc +++ b/lily/context-specced-music-iterator.cc @@ -4,11 +4,13 @@ source file of the GNU LilyPond music typesetter - (c) 2002--2006 Han-Wen Nienhuys + (c) 2002--2008 Han-Wen Nienhuys */ #include "music-wrapper-iterator.hh" #include "context.hh" +#include "music.hh" + class Context_specced_music_iterator : public Music_wrapper_iterator { @@ -30,8 +32,8 @@ Context_specced_music_iterator::construct_children () Context *a = 0; - if (c_id == "$uniqueContextId") - a = get_outlet ()->create_unique_context (ct, ops); + if (to_boolean (get_music ()->get_property ("create-new"))) + a = get_outlet ()->create_unique_context (ct, c_id, ops); else a = get_outlet ()->find_create_context (ct, c_id, ops);