]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/bar-check-iterator.cc
unsmob_pitch -> Pitch::unsmob and related
[lilypond.git] / lily / bar-check-iterator.cc
index e4d26f8a1a3db33a2f359c9d196c517a361e1a02..848736b8d4ca9ae1fdde2511a83ec57be721fa2d 100644 (file)
@@ -56,7 +56,7 @@ Bar_check_iterator::process (Moment m)
       SCM mp = tr->get_property ("measurePosition");
       SCM sync = tr->get_property ("barCheckSynchronize");
 
-      Moment *where = unsmob_moment (mp);
+      Moment *where = Moment::unsmob (mp);
       if (!where)
         return;
 
@@ -73,8 +73,8 @@ Bar_check_iterator::process (Moment m)
           else
             {
               SCM lf = tr->get_property ("barCheckLastFail");
-              if (unsmob_moment (lf)
-                  && *unsmob_moment (lf) == *where)
+              if (Moment::unsmob (lf)
+                  && *Moment::unsmob (lf) == *where)
                 warn = false;
               else
                 tr->set_property ("barCheckLastFail", mp);