summaryrefslogtreecommitdiff
path: root/lily/rest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'lily/rest.cc')
-rw-r--r--lily/rest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/lily/rest.cc b/lily/rest.cc
index 0c527bd9ba..acfcc3617b 100644
--- a/lily/rest.cc
+++ b/lily/rest.cc
@@ -41,8 +41,8 @@ Rest::do_brew_molecule_p () const
bool streepjes_b = abs(position_i_) > staff_size_i_ /2 &&
(balltype_i_ == 0 || balltype_i_ == 1);
- Atom s(lookup_l ()->rest (balltype_i_, streepjes_b));
- Molecule * m = new Molecule ( Atom (s));
+ Molecule s(lookup_l ()->rest (balltype_i_, streepjes_b));
+ Molecule * m = new Molecule ( Molecule (s));
m->translate_axis (position_i_ * paper ()->internote_f (), Y_AXIS);
return m;
}