X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fstream-event.cc;h=674f22fda4d3c423141c88ba12fd4fdc52ea9523;hb=47db9a3883d726ca53e2133a3b2298f78dd6a32e;hp=f8c9f8fc8b619235eb78baa87cf314a5381ac163;hpb=9066eeede909ace56324c905217c5b585ba42f90;p=lilypond.git diff --git a/lily/stream-event.cc b/lily/stream-event.cc index f8c9f8fc8b..674f22fda4 100644 --- a/lily/stream-event.cc +++ b/lily/stream-event.cc @@ -1,7 +1,7 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 2005--2014 Erik Sandberg + Copyright (C) 2005--2015 Erik Sandberg LilyPond is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -19,7 +19,6 @@ #include "stream-event.hh" -#include "ly-smobs.icc" #include "context.hh" #include "input.hh" #include "music.hh" @@ -62,7 +61,7 @@ Stream_event::origin () const void Stream_event::set_spot (Input *i) { - set_property ("origin", make_input (*i)); + set_property ("origin", i->smobbed_copy ()); } bool @@ -87,8 +86,8 @@ Stream_event::make_transposable () SCM prop = scm_car (entry); SCM val = scm_cdr (entry); - if ((Pitch::unsmob (val) - || (prop == ly_symbol2scm ("element") && Music::unsmob (val)) + if ((Pitch::is_smob (val) + || (prop == ly_symbol2scm ("element") && Music::is_smob (val)) || (prop == ly_symbol2scm ("elements") && scm_is_pair (val)) || (prop == ly_symbol2scm ("pitch-alist") && scm_is_pair (val))) && scm_is_false (scm_assq (prop, mutable_property_alist_))) @@ -114,9 +113,3 @@ Stream_event::undump (SCM data) obj->mutable_property_alist_ = scm_reverse (scm_cdr (data)); return obj->unprotect (); } - -Stream_event * -Stream_event::unsmob (SCM m) -{ - return dynamic_cast (Prob::unsmob (m)); -}