From 149210afbe9023e2f7d2b0339e14a79164cd650b Mon Sep 17 00:00:00 2001 From: fred Date: Sun, 24 Mar 2002 20:02:23 +0000 Subject: [PATCH] lilypond-0.1.48 --- lily/dots.cc | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/lily/dots.cc b/lily/dots.cc index 8bba43afcb..041e80a8cb 100644 --- a/lily/dots.cc +++ b/lily/dots.cc @@ -25,7 +25,7 @@ Dots::do_post_processing () if (!no_dots_i_) { transparent_b_ = true; - set_empty(true); + set_empty (true); } } @@ -33,16 +33,17 @@ Molecule* Dots::brew_molecule_p () const { Molecule *out = new Molecule; - Atom fill = paper()->lookup_l ()->fill (Box(Interval(0,0),Interval(0,0))); + Atom fill = paper ()->lookup_l ()->fill (Box (Interval (0,0), + Interval (0,0))); out->add(fill); Atom d = paper ()->lookup_l ()->dots (); - Real dw = d.dim_[X_AXIS].length(); - d.translate_axis(-dw,X_AXIS); + Real dw = d.dim_[X_AXIS].length (); + d.translate_axis (-dw, X_AXIS); for (int i=no_dots_i_; i--; ) { - d.translate_axis(2*dw,X_AXIS); + d.translate_axis (2*dw,X_AXIS); out->add (d); } Real inter_f = paper ()->internote_f (); -- 2.39.5