X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fcontext-mod-scheme.cc;h=4d6fef5c09d5ba0bb3256d23d437e391349f5ac3;hb=47db9a3883d726ca53e2133a3b2298f78dd6a32e;hp=6c04c0baf92461d4a4d39b26d2bbbf7f38340062;hpb=058370efc7e9710f149d0f444328bb1fcd7bdec1;p=lilypond.git diff --git a/lily/context-mod-scheme.cc b/lily/context-mod-scheme.cc index 6c04c0baf9..4d6fef5c09 100644 --- a/lily/context-mod-scheme.cc +++ b/lily/context-mod-scheme.cc @@ -1,7 +1,7 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 2010--2014 Jan Nieuwenhuizen + Copyright (C) 2010--2015 Jan Nieuwenhuizen Han-Wen Nienhuys LilyPond is free software: you can redistribute it and/or modify @@ -26,7 +26,7 @@ LY_DEFINE (ly_get_context_mods, "ly:get-context-mods", "Returns the list of context modifications stored in" " @var{contextmod}.") { - Context_mod *tr = unsmob_context_mod (contextmod); + Context_mod *tr = Context_mod::unsmob (contextmod); LY_ASSERT_SMOB (Context_mod, contextmod, 1); return tr->get_mods (); } @@ -36,7 +36,7 @@ LY_DEFINE (ly_add_context_mod, "ly:add-context-mod", "Adds the given context @var{modification} to the list" " @var{contextmods} of context modifications.") { - Context_mod *ctxmod = unsmob_context_mod (contextmods); + Context_mod *ctxmod = Context_mod::unsmob (contextmods); LY_ASSERT_SMOB (Context_mod, contextmods, 1); ctxmod->add_context_mod (modification); return SCM_UNSPECIFIED; @@ -63,8 +63,8 @@ LY_DEFINE (ly_context_mod_apply_x, "ly:context-mod-apply!", LY_ASSERT_SMOB (Context, context, 1); LY_ASSERT_SMOB (Context_mod, mod, 2); - apply_property_operations (unsmob_context (context), - unsmob_context_mod (mod)->get_mods ()); + apply_property_operations (Context::unsmob (context), + Context_mod::unsmob (mod)->get_mods ()); scm_remember_upto_here_1 (context); return SCM_UNSPECIFIED; }