X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fnote-column.cc;h=0b7481529ad209f89027f371d4a21a305e70bb9a;hb=85d8b50f9d36b3f2d38aa11de3755cf563ac49e3;hp=f49b65b986fe97ce49fa00377f770258a80590ff;hpb=0f7c7f4503011bc1e191933cb8a9f0ba1f95aceb;p=lilypond.git diff --git a/lily/note-column.cc b/lily/note-column.cc index f49b65b986..0b7481529a 100644 --- a/lily/note-column.cc +++ b/lily/note-column.cc @@ -20,6 +20,7 @@ using namespace std; #include "note-head.hh" #include "accidental-placement.hh" #include "pointer-group-interface.hh" +#include "directional-element-interface.hh" /* TODO: figure out if we can prune this class. This is just an @@ -73,7 +74,7 @@ Note_column::dir (Grob *me) { Grob *stem = unsmob_grob (me->get_object ("stem")); if (stem && Stem::has_interface (stem)) - return Stem::get_direction (stem); + return get_grob_direction (stem); else { extract_grob_set (me, "note-heads", heads);