From 81e021b69541f15b44c679b29cd651db053c2bcd Mon Sep 17 00:00:00 2001 From: fred Date: Thu, 31 Oct 1996 21:04:58 +0000 Subject: [PATCH] lilypond-0.0.6 --- linestaff.cc | 7 +++++-- linestaff.hh | 5 +++-- 2 files changed, 8 insertions(+), 4 deletions(-) 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*); }; -- 2.39.5