From 000424bb7f07d1348ab08ecbe4fcda3fad6f3f07 Mon Sep 17 00:00:00 2001 From: fred Date: Sun, 24 Mar 2002 19:32:35 +0000 Subject: [PATCH] lilypond-0.0.33 --- Documentation/make_website | 9 ++++----- src/commandrequest.cc | 17 ++++++++++++----- 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/Documentation/make_website b/Documentation/make_website index 4b1a9aaf4a..1aede35367 100755 --- a/Documentation/make_website +++ b/Documentation/make_website @@ -11,7 +11,7 @@ sub local $base="lilypond/"; local @examples=("wohltemperirt"); -system 'make html'; +system 'pod2html'; print "resetting refs.\n"; @@ -31,7 +31,6 @@ foreach $a (@examples) { "gs -q -sDEVICE=ppmraw -sOutputFile=- -r200 -dNOPAUSE $a.ps -c quit |pnmscale 0.5| ppmtogif > $a.gif" } -system "mkdir docxx; make -C.. docxx; ln ../docxx/* ./docxx/;" - -system "tar cf website.tar *.html *.gif *.png *.ps docxx/;" . -"gzip -9 website.tar;" +system "mkdir docxx; make -C.. docxx; ln ../docxx/* ./docxx/;" . + "tar cf website.tar *.html *.gif *.png *.ps docxx/;" . + "gzip -9 website.tar;" diff --git a/src/commandrequest.cc b/src/commandrequest.cc index 065f69ae53..9af17503f3 100644 --- a/src/commandrequest.cc +++ b/src/commandrequest.cc @@ -17,10 +17,21 @@ Cadenza_req::do_print()const mtor << on_b; } +int +Bar_req::compare(const Bar_req &c1)const +{ + return type_str_ == c1.type_str_; +} + void Bar_req::do_print() const { - mtor << type; + mtor << type_str_; +} + +Bar_req::Bar_req(String s) +{ + type_str_ = s; } Partial_measure_req::Partial_measure_req(Moment m) @@ -55,10 +66,6 @@ Nonmusical_req::do_print()const{} void Barcheck_req::do_print() const{} -Bar_req::Bar_req(String s) -{ - type = s; -} /* *************** */ void Clef_change_req::do_print() const -- 2.39.5