]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/episema-engraver.cc
Doc: Included/compile.itexi - CG 4.2 - Updated notes on reqs for compiling
[lilypond.git] / lily / episema-engraver.cc
index f8b714b1372e96594a0ff421d53e23a4dd4e33a1..ec33c180cc079cc0eb351ae1c73f198fc33c0087 100644 (file)
@@ -27,6 +27,8 @@
 
 #include "translator.icc"
 
+using std::vector;
+
 class Episema_engraver : public Engraver
 {
 public:
@@ -106,7 +108,7 @@ Episema_engraver::typeset_all ()
         {
           Grob *col = (note_columns_.size ()
                        ? note_columns_.back ()
-                       : Grob::unsmob (get_property ("currentMusicalColumn")));
+                       : unsmob<Grob> (get_property ("currentMusicalColumn")));
           finished_->set_bound (RIGHT, col);
         }
       finished_ = 0;
@@ -120,7 +122,7 @@ Episema_engraver::stop_translation_timestep ()
     {
       Grob *col = (note_columns_.size ()
                    ? note_columns_.front ()
-                   : Grob::unsmob (get_property ("currentMusicalColumn")));
+                   : unsmob<Grob> (get_property ("currentMusicalColumn")));
       span_->set_bound (LEFT, col);
     }