X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fcoherent-ligature-engraver.cc;h=e50ac01fd357e6696a4601c88d90ee1a6ad38462;hb=c8d62eca2d025e1fdce22f478f87c10f414d4b9d;hp=3e2915e719674c28021273dad98233b09363c9b2;hpb=ffd278ab691a1ada9b0ff0f8fd7548ab791f1647;p=lilypond.git diff --git a/lily/coherent-ligature-engraver.cc b/lily/coherent-ligature-engraver.cc index 3e2915e719..e50ac01fd3 100644 --- a/lily/coherent-ligature-engraver.cc +++ b/lily/coherent-ligature-engraver.cc @@ -1,7 +1,7 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 2003--2012 Juergen Reuter + Copyright (C) 2003--2015 Juergen Reuter LilyPond is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -27,6 +27,8 @@ #include "staff-symbol-referencer.hh" #include "stream-event.hh" +using std::vector; + /* * This abstract class serves as common superclass for all ligature * engravers thet produce a single connected graphical object of fixed @@ -151,7 +153,7 @@ compute_delta_pitches (vector const &primitives) primitive = dynamic_cast (primitives[i].grob ()); Stream_event *cause = primitives[i].event_cause (); int pitch - = unsmob_pitch (cause->get_property ("pitch"))->steps (); + = unsmob (cause->get_property ("pitch"))->steps (); if (prev_primitive) { delta_pitch = pitch - prev_pitch;