X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Frelative-octave-check.cc;h=12abf812541a94fc31e94eb740a313205b6a9f90;hb=750b714488c5af6eae22d07163bba8b554734ac6;hp=00973f79fcb0febb845e3fb35294ade388d4a9b3;hpb=9066eeede909ace56324c905217c5b585ba42f90;p=lilypond.git diff --git a/lily/relative-octave-check.cc b/lily/relative-octave-check.cc index 00973f79fc..12abf81254 100644 --- a/lily/relative-octave-check.cc +++ b/lily/relative-octave-check.cc @@ -1,7 +1,7 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 2005--2014 Han-Wen Nienhuys + Copyright (C) 2005--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 @@ -31,9 +31,9 @@ MAKE_SCHEME_CALLBACK (Relative_octave_check, relative_callback, 2) SCM Relative_octave_check::relative_callback (SCM music, SCM last_pitch) { - Pitch p = *Pitch::unsmob (last_pitch); - Music *m = Music::unsmob (music); - Pitch *check_p = Pitch::unsmob (m->get_property ("pitch")); + Pitch p = *unsmob (last_pitch); + Music *m = unsmob (music); + Pitch *check_p = unsmob (m->get_property ("pitch")); int delta_oct = 0; if (check_p)