]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.3.4
authorfred <fred>
Tue, 26 Mar 2002 22:43:14 +0000 (22:43 +0000)
committerfred <fred>
Tue, 26 Mar 2002 22:43:14 +0000 (22:43 +0000)
lily/staff-side.cc
lily/stem.cc

index 5f923b89d8186819fe04fe13cc44728b31dbef57..5e737330a0640a094f034e412f3bb0c6ca902278 100644 (file)
@@ -16,7 +16,6 @@
 
 Staff_side_element::Staff_side_element ()
 {
-  set_direction (CENTER);
   to_position_l_ = 0;
   set_elt_property ("transparent", SCM_BOOL_T);
   axis_ = Y_AXIS;
index 178166d73be50bd3c4f82f3501510c6f573980cc..2975f3321afe187b6c8423c9b6297fcb2ad438f9 100644 (file)
 #include "beam.hh"
 #include "rest.hh"
 
-void
-Stem::set_direction (Direction d)
-{
-  if  (!get_direction ())
-    warning (_ ("stem direction set already!"));
-
-  dir_ = d;
-
-  /*
-    todo
-  */
-}
-
 Stem::Stem ()
 {
   beams_i_drul_[LEFT] = beams_i_drul_[RIGHT] = -1;
   yextent_drul_[DOWN] = yextent_drul_[UP] = 0;
   flag_i_ = 2;
-  set_direction (CENTER);
   beam_l_ = 0;
 }