From b6dc72425ad951664e63f1326acae99eed496139 Mon Sep 17 00:00:00 2001 From: fred Date: Sun, 24 Mar 2002 19:27:30 +0000 Subject: [PATCH] lilypond-0.0.22 --- src/rest.cc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/rest.cc b/src/rest.cc index edb89c3696..d06489507c 100644 --- a/src/rest.cc +++ b/src/rest.cc @@ -22,16 +22,14 @@ Rest::print()const Molecule* Rest::brew_molecule()const { - assert(pstaff_); - Paperdef *p =paper(); Symbol s; - s = p->lookup_->rest(balltype); + s = p->lookup_p_->rest(balltype); Molecule *m = new Molecule(Atom(s)); if (dots) { - Symbol d =p->lookup_->dots(dots); + Symbol d =p->lookup_p_->dots(dots); Molecule dm; dm.add(Atom(d)); m->add_right(dm); -- 2.39.5