From c15b058ca3a48e3c418bdbac24dca188ae75e34c Mon Sep 17 00:00:00 2001 From: fred Date: Sun, 24 Mar 2002 19:39:55 +0000 Subject: [PATCH] lilypond-0.0.55 --- lily/include/text-item.hh | 1 + lily/text-item.cc | 9 +++++++-- 2 files changed, 8 insertions(+), 2 deletions(-) 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(); } -- 2.39.5