]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lyric-combine-music.cc
(ly:optimal-page-breaks): Bugfix: underful
[lilypond.git] / lily / lyric-combine-music.cc
index 1d0b911515affdfea683c97b6cb50096b281029c..916510732b4cc9425ba9fdefda8754c672cff732 100644 (file)
@@ -3,7 +3,7 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1999--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1999--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
@@ -24,7 +24,7 @@ Lyric_combine_music::get_length () const
 Music*
 Lyric_combine_music::get_music () const
 {
-  SCM l = get_mus_property ("elements");
+  SCM l = get_property ("elements");
   if (!gh_pair_p (l))
     return 0;
   return unsmob_music (gh_car (l));
@@ -34,7 +34,7 @@ Lyric_combine_music::get_music () const
 Music*
 Lyric_combine_music::get_lyrics () const
 {
-  SCM l = get_mus_property ("elements");
+  SCM l = get_property ("elements");
   if (!gh_pair_p (l))
     return 0;
   l = gh_cdr (l);