From: fred Date: Sat, 16 Nov 1996 00:31:34 +0000 (+0000) Subject: lilypond-0.0.10 X-Git-Tag: release/1.5.59~6811 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=93994be2ac7442cc838ec338b0d344018c5c347a;p=lilypond.git lilypond-0.0.10 --- diff --git a/hdr/sccol.hh b/hdr/sccol.hh index f18b659e7e..44f3fbb16d 100644 --- a/hdr/sccol.hh +++ b/hdr/sccol.hh @@ -12,7 +12,7 @@ struct Score_column { /// indirection to column - PCol * pcol; + PCol * pcol_; /// length of notes/rests in this column svec durations; @@ -28,7 +28,7 @@ struct Score_column { return sgn(c1.when - c2.when); } void set_breakable() { - pcol->set_breakable(); + pcol_->set_breakable(); } bool used(); void print() const; diff --git a/src/sccol.cc b/src/sccol.cc index 1dfc8f2176..417b967e1c 100644 --- a/src/sccol.cc +++ b/src/sccol.cc @@ -4,13 +4,13 @@ Score_column::Score_column(Real w) { when = w; - pcol = new PCol(0); + pcol_ = new PCol(0); musical = false; } bool Score_column::used() { - return pcol->used; + return pcol_->used; } void @@ -22,7 +22,7 @@ Score_column::print() const for (int i=0; i < durations.sz(); i++) mtor << durations[i] << " "; mtor << "]\n"; - pcol->print(); + pcol_->print(); mtor << "}\n"; #endif }