]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/bend-engraver.cc
Run grand replace for 2015.
[lilypond.git] / lily / bend-engraver.cc
index d7ff790ae4a345e46f5fdc28b6e41a1efaf3c15f..30c50388aaf3edc1e038902569969715a3d28a7f 100644 (file)
@@ -1,7 +1,7 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 2006--2012 Han-Wen Nienhuys
+  Copyright (C) 2006--2015 Han-Wen Nienhuys
 
   LilyPond is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
@@ -53,7 +53,7 @@ Bend_engraver::finalize ()
   // We shouldn't end a spanner on the last musical column of a piece because then
   // it would extend past the last breakable column of the piece.
   if (last_fall_)
-    last_fall_->set_bound (RIGHT, unsmob_grob (get_property ("currentCommandColumn")));
+    last_fall_->set_bound (RIGHT, Grob::unsmob (get_property ("currentCommandColumn")));
 }
 
 void
@@ -61,7 +61,7 @@ Bend_engraver::stop_fall ()
 {
   bool bar = scm_is_string (get_property ("whichBar"));
 
-  fall_->set_bound (RIGHT, unsmob_grob (bar
+  fall_->set_bound (RIGHT, Grob::unsmob (bar
                                         ? get_property ("currentCommandColumn")
                                         : get_property ("currentMusicalColumn")));
   last_fall_ = fall_;