From: fred Date: Sun, 24 Mar 2002 19:39:55 +0000 (+0000) Subject: lilypond-0.0.55 X-Git-Tag: release/1.5.59~4921 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=c15b058ca3a48e3c418bdbac24dca188ae75e34c;p=lilypond.git lilypond-0.0.55 --- diff --git a/lily/include/text-item.hh b/lily/include/text-item.hh index bf40574946..d9ccb61c4b 100644 --- a/lily/include/text-item.hh +++ b/lily/include/text-item.hh @@ -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(); }; diff --git a/lily/text-item.cc b/lily/text-item.cc index e97c7357b3..9092be3259 100644 --- a/lily/text-item.cc +++ b/lily/text-item.cc @@ -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(); }