X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Frelative-octave-check.cc;h=a68c5b8e4aac63ace9dd5fcc4ddf88748e32bbc5;hb=47db9a3883d726ca53e2133a3b2298f78dd6a32e;hp=9a2a9bebcbc7ee7ae1aa89b101e4e2cbc3e6bf2a;hpb=bb8a0a5387af94dd2702877256334b160575a730;p=lilypond.git diff --git a/lily/relative-octave-check.cc b/lily/relative-octave-check.cc index 9a2a9bebcb..a68c5b8e4a 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--2011 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 = *unsmob_pitch (last_pitch); - Music *m = unsmob_music (music); - Pitch *check_p = unsmob_pitch (m->get_property ("pitch")); + Pitch p = *Pitch::unsmob (last_pitch); + Music *m = Music::unsmob (music); + Pitch *check_p = Pitch::unsmob (m->get_property ("pitch")); int delta_oct = 0; if (check_p)