]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/metronome-engraver.cc
* input/regression/markup-bidi-pango.ly: new file.
[lilypond.git] / lily / metronome-engraver.cc
index f42c9f1870e71b9a15fb25aa2c033a6ce7c32a72..15375e542bbabb57b47cca64c4e6c0d5a2cdb6e8 100644 (file)
@@ -8,11 +8,11 @@
 
 #include <cctype>
 
+#include "engraver.hh"
+
 #include "note-column.hh"
-#include "bar-line.hh"
-#include "time-signature.hh"
-#include "engraver-group-engraver.hh"
 #include "context.hh"
+#include "grob-array.hh"
 
 /**
    put stuff over or next to  bars.  Examples: bar numbers, marginal notes,
@@ -47,7 +47,8 @@ Metronome_mark_engraver::stop_translation_timestep ()
     {
       Grob *mc = unsmob_grob (get_property ("currentMusicalColumn"));
       text_->set_parent (mc, X_AXIS);
-      text_->set_object ("side-support-elements", get_property ("stavesFound"));
+      text_->set_object ("side-support-elements",
+                        grob_list_to_grob_array (get_property ("stavesFound")));
 
       text_ = 0;
     }