]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/tempo-performer.cc
Merge branch 'master' of /home/jcharles/GIT/Lily/. into translation
[lilypond.git] / lily / tempo-performer.cc
index d705abb3a8ca3d5582c8d7cd9c94a2ee725779d7..01ecb4c3a0fb22814915c9b152d1a7821861f6c1 100644 (file)
@@ -61,10 +61,10 @@ void
 Tempo_performer::process_music ()
 {
   SCM w = get_property ("tempoWholesPerMinute");
-  if (unsmob_moment (w)
+  if (Moment::is_smob (w)
       && !ly_is_equal (w, last_tempo_))
     {
-      Rational r = unsmob_moment (w)->main_part_;
+      Rational r = Moment::unsmob (w)->main_part_;
       r *= Rational (4, 1);
 
       audio_ = new Audio_tempo (r.to_int ());