X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fmoment.cc;h=adcecff767140095dd22e5fbb5aa3d8a5453fdb5;hb=5bbfc22fce036b9b69df5e420de93e11da23c05e;hp=e1e3478c6ed71e607619cdb2bba6ce26074f2374;hpb=0b544cfb7332615ef809b71b57ab656741311ae1;p=lilypond.git diff --git a/lily/moment.cc b/lily/moment.cc index e1e3478c6e..adcecff767 100644 --- a/lily/moment.cc +++ b/lily/moment.cc @@ -80,8 +80,8 @@ Moment::as_scheme () const SCM Moment::equal_p (SCM a, SCM b) { - Moment *m1 = unsmob_moment (a); - Moment *m2 = unsmob_moment (b); + Moment *m1 = Moment::unsmob (a); + Moment *m2 = Moment::unsmob (b); return (*m1 == *m2) ? SCM_BOOL_T : SCM_BOOL_F; } @@ -195,7 +195,7 @@ operator << (ostream &os, Moment const &m) Moment robust_scm2moment (SCM m, Moment d) { - Moment *p = unsmob_moment (m); + Moment *p = Moment::unsmob (m); if (!p) return d; else @@ -205,6 +205,6 @@ robust_scm2moment (SCM m, Moment d) bool moment_less (SCM a, SCM b) { - return *unsmob_moment (a) < *unsmob_moment (b); + return *Moment::unsmob (a) < *Moment::unsmob (b); }