From 3912377817cc6baab8c44bab298ea0c7254de591 Mon Sep 17 00:00:00 2001 From: fred Date: Sat, 16 Nov 1996 00:37:25 +0000 Subject: [PATCH] lilypond-0.0.10 --- src/calcideal.cc | 12 ++++++------ src/score.cc | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/calcideal.cc b/src/calcideal.cc index 8099e0e4c7..051ac4312c 100644 --- a/src/calcideal.cc +++ b/src/calcideal.cc @@ -50,14 +50,14 @@ Score::calc_idealspacing() for (int i=0; i < sc->durations.sz(); i++) { Real d = sc->durations[i]; Real dist = paper_->duration_to_dist(d); - PCol * c2 = find_col(sc->when + d,true)->pcol; - connect_nonmus(sc->pcol, c2, dist); - c2 = find_col(sc->when + d,false)->pcol; - connect_nonmus(sc->pcol, c2, dist); + PCol * c2 = find_col(sc->when + d,true)->pcol_; + connect_nonmus(sc->pcol_, c2, dist); + c2 = find_col(sc->when + d,false)->pcol_; + connect_nonmus(sc->pcol_, c2, dist); } else if (sc->used()) { // ignore empty columns - PCol * c2 = find_col(sc->when,true)->pcol; - connect_nonmus(sc->pcol,c2,0.0); + PCol * c2 = find_col(sc->when,true)->pcol_; + connect_nonmus(sc->pcol_, c2, 0.0); } } } diff --git a/src/score.cc b/src/score.cc index 1df13365f2..6127196174 100644 --- a/src/score.cc +++ b/src/score.cc @@ -75,7 +75,7 @@ Score::clean_cols() sc->clean_cols(); for (PCursor c(cols_); c.ok(); ) { - if (!c->pcol->used) { + if (!c->pcol_->used) { mtor << "removing : "; c->print(); c.del(); @@ -155,7 +155,7 @@ Score::do_pcols() { PCursor sc(cols_); for (; sc.ok(); sc++) { - pscore_->add(sc->pcol); + pscore_->add(sc->pcol_); } } Real -- 2.39.5