summaryrefslogtreecommitdiff
path: root/lily/bar.cc
diff options
context:
space:
mode:
Diffstat (limited to 'lily/bar.cc')
-rw-r--r--lily/bar.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/lily/bar.cc b/lily/bar.cc
index 2342d227b2..2f4b47b3b5 100644
--- a/lily/bar.cc
+++ b/lily/bar.cc
@@ -27,16 +27,16 @@ IMPLEMENT_IS_TYPE_B1(Bar,Item);
void
Bar::do_print()const
{
- mtor << type_str_;
+ DOUT << type_str_;
}
Molecule*
Bar::brew_molecule_p()const
{
Paper_def *p = paper();
- Symbol s = p->lookup_l()->bar( type_str_,
- p->get_var("bar_size") );
- Molecule*output = new Molecule(Atom(s));
+ Symbol s = p->lookup_l()->bar (type_str_,
+ p->get_var ("bar_size"));
+ Molecule*output = new Molecule (Atom (s));
return output;
}