From: fred Date: Sun, 24 Mar 2002 19:30:03 +0000 (+0000) Subject: lilypond-0.0.26 X-Git-Tag: release/1.5.59~5487 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=9a3e114cf11438ef0f4d3b477a3f3868fff637e3;p=lilypond.git lilypond-0.0.26 --- diff --git a/hdr/melodicstaff.hh b/hdr/melodicstaff.hh index e3a5ff1f61..cec73517d7 100644 --- a/hdr/melodicstaff.hh +++ b/hdr/melodicstaff.hh @@ -19,7 +19,7 @@ struct Melodic_staff : public Simple_staff virtual void set_output(PScore *); virtual Item* get_TYPESET_item(Command*); - virtual Stem * get_stem(Stem_req *rq,Moment); + virtual Stem * get_stem(Stem_req *rq); virtual Notehead * get_notehead(Note_req *rq, int bot); virtual Local_key_item* get_local_key_item(); }; diff --git a/hdr/rhythmstaff.hh b/hdr/rhythmstaff.hh index 741be45e78..0508224a3a 100644 --- a/hdr/rhythmstaff.hh +++ b/hdr/rhythmstaff.hh @@ -16,7 +16,7 @@ struct Rhythmic_staff : public Simple_staff /****************/ virtual Item *get_TYPESET_item(Command*); - virtual Stem *get_stem(Stem_req *rq,Moment); + virtual Stem *get_stem(Stem_req *rq); virtual Notehead * get_notehead(Note_req *rq, int b); virtual void set_output(PScore *); }; diff --git a/hdr/simplestaff.hh b/hdr/simplestaff.hh index 531f994d6e..f0ff1679e2 100644 --- a/hdr/simplestaff.hh +++ b/hdr/simplestaff.hh @@ -34,7 +34,6 @@ struct Simple_column : Staff_column { Beam_req *beam_; Simple_staff* staff_l_; Text_req *text_; - Lyric_req* lreq_p_; /****************/ Slur_req * find_slur(Voice *); @@ -44,7 +43,7 @@ struct Simple_column : Staff_column { Molecule *create_command_mol(Command *com); void take_request(Request *rq); - virtual void process_requests(); + virtual void setup_requests(); Simple_column(Score_column*s,Simple_staff*rs); }; @@ -59,7 +58,7 @@ struct Simple_staff : Staff { Staff_column*create_col(Score_column*); virtual Item *get_TYPESET_item(Command*); - virtual Stem *get_stem(Stem_req *rq, Moment)=0; + virtual Stem *get_stem(Stem_req *rq)=0; virtual Notehead *get_notehead(Note_req *rq, int b)=0; virtual Rest *get_rest(Rest_req *rq); virtual void set_output(PScore *);