From: fred Date: Thu, 31 Oct 1996 21:04:58 +0000 (+0000) Subject: lilypond-0.0.6 X-Git-Tag: release/1.5.59~6991 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=81e021b69541f15b44c679b29cd651db053c2bcd;p=lilypond.git lilypond-0.0.6 --- diff --git a/linestaff.cc b/linestaff.cc index dd9227b155..7cd081dc49 100644 --- a/linestaff.cc +++ b/linestaff.cc @@ -2,11 +2,14 @@ #include "symbol.hh" #include "lookupsyms.hh" #include "dimen.hh" +#include "paper.hh" +#include "pscore.hh" -Linestaff::Linestaff(int l) +Linestaff::Linestaff(int l, PScore *s) + : PStaff(s) { nolines = l; - stafsym = Lookup::linestaff(l); + stafsym = s->paper_->lookup_->linestaff(l); } Symbol diff --git a/linestaff.hh b/linestaff.hh index 33e9d39f4e..891269dd9d 100644 --- a/linestaff.hh +++ b/linestaff.hh @@ -4,7 +4,8 @@ struct Linestaff : PStaff { int nolines; - Symbol get_stafsym(Real width)const; - Linestaff(int); +/****************/ + Symbol get_stafsym(Real width)const; + Linestaff(int, PScore*); };