]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/chord-name-engraver.cc
Doc: Issue 4349: Clarify where changes to beatStructure should be placed
[lilypond.git] / lily / chord-name-engraver.cc
index 539efcdf4c0c0fdd8065998554c38444e113e0ca..10420273ab645bd8e8c56dd90fe937b72ddbd909 100644 (file)
@@ -99,7 +99,7 @@ Chord_name_engraver::process_music ()
               if (!Pitch::is_smob (p))
                 continue;
 
-              if (n->get_property ("bass") == SCM_BOOL_T)
+              if (to_boolean (n->get_property ("bass")))
                 bass = p;
               else
                 {
@@ -111,7 +111,7 @@ Chord_name_engraver::process_music ()
                     }
                   else
                     pitches = scm_cons (p, pitches);
-                  if (n->get_property ("inversion") == SCM_BOOL_T)
+                  if (to_boolean (n->get_property ("inversion")))
                     {
                       inversion = p;
                       if (!scm_is_number (oct))