X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fclef-item.cc;h=644735e28822797a5cb91e2602bbbaf367a4770b;hb=419c0d7734351ed1c89a985867e9127f5af46f90;hp=c98c188f7cc4c09da9d5e33c34462832d8e1d861;hpb=795708fdc77fccf592103e995d97ea5fda9e094f;p=lilypond.git diff --git a/lily/clef-item.cc b/lily/clef-item.cc index c98c188f7c..644735e288 100644 --- a/lily/clef-item.cc +++ b/lily/clef-item.cc @@ -22,12 +22,13 @@ Clef_item::do_pre_processing() { SCM style_sym =get_elt_property ("style"); String style; - if (style_sym != SCM_UNDEFINED) + if (gh_string_p (style_sym)) style = ly_scm2string (style_sym); if (break_status_dir() != RIGHT && style != "fullSizeChanges") symbol_ += "_change"; - if (style == "transparent") + + if (style == "transparent") // UGH. JUNKME { set_elt_property ("transparent", SCM_BOOL_T); set_empty (X_AXIS); @@ -35,12 +36,10 @@ Clef_item::do_pre_processing() } /* - FIXME + JUNKME */ Clef_item::Clef_item() { - set_elt_property ("breakable", SCM_BOOL_T); - symbol_ = "treble"; }