From: fred Date: Wed, 9 Apr 1997 21:17:48 +0000 (+0000) Subject: lilypond-0.0.50 X-Git-Tag: release/1.5.59~6155 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=78a2d356e39bfa1319b3273d5e254a52beaade89;p=lilypond.git lilypond-0.0.50 --- diff --git a/lily/include/beam.hh b/lily/include/beam.hh index 8eb2f148b5..a85858bad8 100644 --- a/lily/include/beam.hh +++ b/lily/include/beam.hh @@ -25,7 +25,7 @@ struct Beam: public Directional_spanner { /* *************** */ NAME_MEMBERS(Beam); - virtual Interval width()const; + virtual Interval do_width()const; Offset center() const; Spanner *do_break_at(PCol *, PCol *) const; Beam(); diff --git a/lily/include/stem.hh b/lily/include/stem.hh index 34776ea49c..e64aafdd69 100644 --- a/lily/include/stem.hh +++ b/lily/include/stem.hh @@ -51,7 +51,7 @@ struct Stem : Item { -1 stem points down, +1: stem points up */ - int dir; + int dir_i_; Real stem_xoffset; Array heads; @@ -74,7 +74,7 @@ struct Stem : Item { void set_noteheads(); void do_pre_processing(); - Interval width() const; + virtual Interval do_width() const; Molecule* brew_molecule_p() const; };