]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/staff-spacing.cc
* buildscripts/gen-emmentaler-scripts.py (outdir): capitalize
[lilypond.git] / lily / staff-spacing.cc
index 866c33dbb17eb662d1c0becf476240c8aab58492..7e1db27b06766e99525562a5943795fff7a6cd53 100644 (file)
@@ -3,7 +3,7 @@
 
      source file of the GNU LilyPond music typesetter
 
-     (c) 2001--2004  Han-Wen Nienhuys <hanwen@cs.uu.nl>
+     (c) 2001--2005  Han-Wen Nienhuys <hanwen@cs.uu.nl>
 
 */
 
@@ -33,7 +33,7 @@ Staff_spacing::next_note_correction (Grob * me,
   if (!g || !Note_column::has_interface (g))
     return 0.0;
 
-  Item *col =dynamic_cast<Item*> (g)->get_column ();
+  Item *col = dynamic_cast<Item*> (g)->get_column ();
   Real max_corr = 0. >? (- g->extent (col, X_AXIS)[LEFT]);
 
   /*
@@ -105,7 +105,7 @@ Staff_spacing::bar_y_positions (Grob *bar_grob)
       if (glyph_string.left_string (1) == "|" || glyph_string.left_string (1) == ".")
        {
          SCM sz = Bar_line::get_staff_bar_size (bar_grob->self_scm ());
-         bar_size = Interval (-1,1);
+         bar_size = Interval (-1, 1);
          bar_size *= robust_scm2double (sz, 1)
            / Staff_symbol_referencer::staff_space (bar_grob);
        }
@@ -148,7 +148,7 @@ Staff_spacing::get_spacing_params (Grob *me, Real * space, Real * fixed)
   *space = 1.0;
   *fixed = 1.0;
 
-  Grob * separation_item= 0;
+  Grob * separation_item = 0;
   Item * me_item  = dynamic_cast<Item*> (me);
     
   for (SCM s = me->get_property ("left-items");
@@ -241,7 +241,7 @@ Staff_spacing::get_spacing_params (Grob *me, Real * space, Real * fixed)
 }
 
 
-ADD_INTERFACE (Staff_spacing,"staff-spacing-interface",
+ADD_INTERFACE (Staff_spacing, "staff-spacing-interface",
               "This object calculates spacing details from a "
               " breakable symbol (left) to another object. For example, it takes care "
               " of  optical spacing from  a bar lines to a note.",