]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.22
authorfred <fred>
Sun, 24 Mar 2002 19:27:30 +0000 (19:27 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:27:30 +0000 (19:27 +0000)
src/rest.cc

index edb89c3696f08a795c5f5f5f3b4b50a6c4f370cd..d06489507c4f72f7f0dfd15010073e3de3c9d670 100644 (file)
@@ -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);