]> git.donarmstrong.com Git - lilypond.git/commitdiff
whoops. Set bound in the correct
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 17 Sep 2002 09:54:56 +0000 (09:54 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 17 Sep 2002 09:54:56 +0000 (09:54 +0000)
spanner.

ChangeLog
lily/text-spanner-engraver.cc

index 4bc8e2c4dc7184a3a6751ac2d54e9e96cf854c7a..bc379584e53fb020f031ca38bd86f88b566be8d4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-09-17  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
+
+       * lily/text-spanner-engraver.cc: whoops. Set bound in the correct
+       spanner.
+
 2002-09-15  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
 
        * Documentation/user/refman.itely: patch by Graham Percival
index e0d1c5f0a733fd230a443be0829402e8ed6516b4..6bd4ce3babe285aeb78c092e73e11e98848d14d2 100644 (file)
@@ -40,8 +40,6 @@ private:
 };
 
 
-
-
 Text_spanner_engraver::Text_spanner_engraver ()
 {
   finished_ = 0;
@@ -146,7 +144,7 @@ Text_spanner_engraver::typeset_all ()
       if (!finished_->get_bound (RIGHT))
        {
          Grob* e = unsmob_grob (get_property ("currentMusicalColumn"));
-         span_->set_bound (RIGHT, e);
+         finished_->set_bound (RIGHT, e);
        }
       typeset_grob (finished_);
       finished_ = 0;