]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/ambitus.cc
revert change of instrumentTransposition definition. Document why.
[lilypond.git] / lily / ambitus.cc
index 9f1f5e769d501a8ac815a5d122d06db6f55c528d..1e6da083bc1d13ae654c0858d5a06aa1cd5b4a3c 100644 (file)
@@ -30,7 +30,7 @@ Ambitus::print (SCM smob)
       && heads.size () > 1)
     {
       Grob *common
-       = common_refpoint_of_array (Link_array__Grob_ (heads.begin (),
+       = common_refpoint_of_array (vector<Grob*> (heads.begin (),
                                                       heads.begin () + 2),
                                    me, Y_AXIS);
 
@@ -68,6 +68,11 @@ Ambitus::print (SCM smob)
   return SCM_EOL;
 }
 
-ADD_INTERFACE (Ambitus, "ambitus-interface",
+ADD_INTERFACE (Ambitus ,
               "The line between note heads for a pitch range.",
-              "thickness note-heads join-heads");
+
+              /* props */
+              "join-heads "
+              "note-heads "
+              "thickness "
+              );