From 93994be2ac7442cc838ec338b0d344018c5c347a Mon Sep 17 00:00:00 2001 From: fred Date: Sat, 16 Nov 1996 00:31:34 +0000 Subject: [PATCH] lilypond-0.0.10 --- hdr/sccol.hh | 4 ++-- src/sccol.cc | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) 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 } -- 2.39.5