X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fpointer-group-interface-scheme.cc;h=a111aad58c1d89cfb3fe81b779cb390a1699fe78;hb=5d84bfad4626892bcffd05adcced53c8a2329047;hp=42ff535f54fe67c01d17477578f0fd3f8bcea69b;hpb=0fe24db3936774a8fb913cb14c997036db7aeb1c;p=lilypond.git diff --git a/lily/pointer-group-interface-scheme.cc b/lily/pointer-group-interface-scheme.cc index 42ff535f54..a111aad58c 100644 --- a/lily/pointer-group-interface-scheme.cc +++ b/lily/pointer-group-interface-scheme.cc @@ -1,7 +1,7 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 2010--2014 Han-Wen Nienhuys + Copyright (C) 2010--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 @@ -28,9 +28,9 @@ LY_DEFINE (ly_pointer_group_interface__add_grob, "ly:pointer-group-interface::ad LY_ASSERT_TYPE (ly_is_symbol, sym, 2); LY_ASSERT_SMOB (Grob, grob_element, 3); - Pointer_group_interface::add_grob (Grob::unsmob (grob), + Pointer_group_interface::add_grob (unsmob (grob), sym, - Grob::unsmob (grob_element)); + unsmob (grob_element)); return SCM_UNSPECIFIED; }