]> git.donarmstrong.com Git - lilypond.git/commitdiff
Remove unused variable.
authorWerner Lemberg <wl@gnu.org>
Tue, 23 Dec 2008 08:56:17 +0000 (09:56 +0100)
committerWerner Lemberg <wl@gnu.org>
Tue, 23 Dec 2008 08:56:17 +0000 (09:56 +0100)
lily/bar-line.cc
lily/include/bar-line.hh

index 18ad550e9209e0e3b8f5ad026f324ffd4d6c099a..f13d8697c3621eb4a9e4b59a677767d5367b298c 100644 (file)
@@ -200,7 +200,7 @@ Bar_line::compound_barline (Grob *me, string str, Real h,
     }
   else if (str == "'")
     {
-      m = tick_bar_line (me, hair, h, rounded);
+      m = tick_bar_line (me, h, rounded);
     }
   else if (str == ".")
     {
@@ -227,7 +227,7 @@ Bar_line::simple_barline (Grob *me,
 }
 
 Stencil
-Bar_line::tick_bar_line (Grob *me, Real w, Real h, bool rounded)
+Bar_line::tick_bar_line (Grob *me, Real h, bool rounded)
 {
   Real th = Staff_symbol_referencer::staff_space (me) / 2;
   Real line_thick = Staff_symbol_referencer::line_thickness (me);
index 43db11e9c9e0df074f65fc9222e94b414fa9d7b8..1ae1b59ae7ef2ce0bdadfdf07fc49f6b4fad5efb 100644 (file)
@@ -16,7 +16,7 @@ public:
   DECLARE_GROB_INTERFACE();
 
   static Stencil dashed_bar_line (Grob *me, Real h, Real thick);
-  static Stencil tick_bar_line (Grob *me, Real w, Real h, bool rounded);
+  static Stencil tick_bar_line (Grob *me, Real h, bool rounded);
   static Stencil compound_barline (Grob *, string, Real height, bool rounded);
   static Stencil simple_barline (Grob *, Real wid, Real height, bool rounded);
   static Interval bar_y_extent (Grob *, Grob *);