]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.55
authorfred <fred>
Sun, 24 Mar 2002 19:39:55 +0000 (19:39 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:39:55 +0000 (19:39 +0000)
lily/include/text-item.hh
lily/text-item.cc

index bf405749464602eb2c129f7db744cec2da1a8b02..d9ccb61c4bdc139deebd3b541c446a0c5d576f55 100644 (file)
@@ -32,6 +32,7 @@ protected:
     virtual void set_default_index();
     Molecule* brew_molecule_p() const;
     virtual void do_post_processing();
+    virtual void do_pre_processing();
 };
 
 
index e97c7357b3b56e69ed920911b483eb17d6146564..9092be32593ce6a0499efd0edbb0c1d74406eb16 100644 (file)
@@ -54,11 +54,16 @@ Text_item::set_default_index()
 }
 
 void
-Text_item::do_post_processing()
+Text_item::do_pre_processing()
 {
     if (!dir_i_)
        dir_i_ = -1;
-    set_default_index();
+}
+
+void
+Text_item::do_post_processing()
+{
+        set_default_index();
 }