]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.3.23
authorfred <fred>
Tue, 26 Mar 2002 22:45:20 +0000 (22:45 +0000)
committerfred <fred>
Tue, 26 Mar 2002 22:45:20 +0000 (22:45 +0000)
lily/include/breathing-sign.hh
lily/script.cc
scm/generic-property.scm

index aff6f393b438b95162991b5605cfda03a9e4a12a..bda300aaa010f1777d3d98d5bd6f661410ed65db 100644 (file)
@@ -18,10 +18,6 @@ class Breathing_sign : public Item
 public:
   VIRTUAL_COPY_CONS(Score_element);
   Breathing_sign ();
-
-  void set_vertical_position (Direction);
-
-
 protected:
   virtual void do_post_processing ();
   virtual Molecule* do_brew_molecule_p () const;
index c3dc48943d012e6670296c15216633d951573428..494faed2b4703446636f553ed9f46df9dfa078d1 100644 (file)
@@ -51,8 +51,9 @@ Script::do_pre_processing ()
 void
 Script::do_post_processing ()
 {
-  Direction d =  Side_position_interface (this).get_direction ();
-  Molecule m (get_molecule(d));
+  Side_position_interface i (this);
+  Direction d =  i.get_direction ();
+  i.set_direction (d);
 }
 
 Molecule*
index 6be444394494430d18421f59508f4a27508bd9a7..6b7d312993dd31b4944f592fcb5fb448f50f58bb 100644 (file)
    generic-text-properties
    generic-note-column-properties
    generic-crescendo-properties
+   generic-script-properties
    generic-All-properties
    ))