X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Ftime-signature-engraver.cc;h=d9051d59aee360913ab2f5cc3aab0e03233c1ea2;hb=3a0e9efb7f067e5b334ba0596b95e15d96d7cc49;hp=a71769709fe8b67c9a9786d95fac946643669246;hpb=8002fa018c81f70585c25232247c6dcba7f5cba0;p=lilypond.git diff --git a/lily/time-signature-engraver.cc b/lily/time-signature-engraver.cc index a71769709f..d9051d59ae 100644 --- a/lily/time-signature-engraver.cc +++ b/lily/time-signature-engraver.cc @@ -54,10 +54,10 @@ Time_signature_engraver::do_pre_move_processing() { if (time_signature_p_) { - Scalar sigstyle = get_property ("timeSignatureStyle", 0); - if (sigstyle.length_i ()) + SCM sigstyle = get_property ("timeSignatureStyle", 0); + if (gh_string_p (sigstyle)) { - time_signature_p_->time_sig_type_str_ = sigstyle; + time_signature_p_->time_sig_type_str_ = ly_scm2string (sigstyle); } typeset_element (time_signature_p_);