X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fgrob.cc;h=fc49f16d4ddd7b5b6b67fc3da0629f5252d87d56;hb=40b0a6f7045d76b2d289df757a72ed18942e10f1;hp=402f9dfc87499f033c466f92005d4812cb2aa4ca;hpb=75eebcb49e52d296b1da3e1074e0825d2c780db4;p=lilypond.git diff --git a/lily/grob.cc b/lily/grob.cc index 402f9dfc87..fc49f16d4d 100644 --- a/lily/grob.cc +++ b/lily/grob.cc @@ -10,27 +10,19 @@ #include -#include "main.hh" #include "input-smob.hh" -#include "warn.hh" -#include "pointer-group-interface.hh" -#include "misc.hh" -#include "paper-score.hh" -#include "stencil.hh" -#include "warn.hh" -#include "system.hh" +#include "international.hh" #include "item.hh" -#include "stencil.hh" +#include "main.hh" #include "misc.hh" #include "music.hh" -#include "item.hh" -#include "paper-score.hh" -#include "ly-smobs.icc" #include "output-def.hh" +#include "pointer-group-interface.hh" +#include "stencil.hh" +#include "system.hh" +#include "warn.hh" - - - +#include "ly-smobs.icc" Grob * Grob::clone (int count) const @@ -438,7 +430,7 @@ Grob::fixup_refpoint () MESSAGES ****************************************************************/ void -Grob::warning (String s) const +Grob::warning (string s) const { SCM cause = self_scm (); while (Grob *g = unsmob_grob (cause)) @@ -451,7 +443,7 @@ Grob::warning (String s) const } -String +string Grob::name () const { SCM meta = get_property ("meta"); @@ -461,7 +453,7 @@ Grob::name () const } void -Grob::programming_error (String s) const +Grob::programming_error (string s) const { SCM cause = self_scm (); while (Grob *g = unsmob_grob (cause)) @@ -616,9 +608,9 @@ common_refpoint_of_list (SCM elist, Grob *common, Axis a) } Grob * -common_refpoint_of_array (Link_array const &arr, Grob *common, Axis a) +common_refpoint_of_array (vector const &arr, Grob *common, Axis a) { - for (int i = arr.size (); i--;) + for (vsize i = arr.size (); i--;) if (Grob *s = arr[i]) { if (common)