]> git.donarmstrong.com Git - lilypond.git/commitdiff
(class Score): remove texts_ member.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Fri, 4 Nov 2005 15:04:18 +0000 (15:04 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Fri, 4 Nov 2005 15:04:18 +0000 (15:04 +0000)
ChangeLog
lily/include/paper-book.hh
lily/include/score.hh
lily/paper-book.cc
lily/score.cc

index 5d7b6a9b42f2fb22f59153990d290128fa235a1c..43c0286f537dd6966a5921af9ecb0ae1c752c47c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2005-11-04  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
+       * lily/include/score.hh (class Score): remove texts_ member.
+
        * lily/beam.cc (set_stem_lengths): force direction callback.
        (print): read quantized-positions, so we can force
        Beam::set_stem_lengths to occur.
index 2780a231edfd8c6a3fc61670996267df4dcbd8c0..3bad2b32b8690d2fefa025d775f1d752c8ae11c2 100644 (file)
@@ -46,7 +46,6 @@ public:
   Stencil score_title (SCM);
   void classic_output (SCM output_channel);
   void output (SCM output_channel);
-  void post_processing (SCM, SCM);
 };
 
 DECLARE_UNSMOB (Paper_book, paper_book)
index b0325337864a1209b5ad247495dde6e298d1a6e2..5ccab2bb816bb4d75117402c0ba4911ab8a71ef1 100644 (file)
@@ -27,7 +27,6 @@ public:
   String user_key_;
   Link_array<Output_def> defs_;
   SCM header_;
-  SCM texts_;
   bool error_found_;
 
   Score ();
index 5e274e98b6d479178a5e3095a6a50b4483dfa3f1..56a5164a0cc52ffc7f70ef544c0d4c9aa7bca0bf 100644 (file)
@@ -56,7 +56,7 @@ int
 Paper_book::print_smob (SCM smob, SCM port, scm_print_state*)
 {
   Paper_book *b = (Paper_book *) SCM_CELL_WORD_1 (smob);
-
+  (void)b;
   scm_puts ("#<Paper_book>", port);
   return 1;
 }
index 62047fd40c3af30b36ece71cd146da3265df8ce9..b5898a560323670770394296762c6aefa72009fa 100644 (file)
@@ -31,7 +31,6 @@ Score::Score ()
 {
   header_ = SCM_EOL;
   music_ = SCM_EOL;
-  texts_ = SCM_EOL;
   error_found_ = false;
   smobify_self ();
 }
@@ -50,7 +49,6 @@ Score::mark_smob (SCM s)
   Score *sc = (Score *) SCM_CELL_WORD_1 (s);
 
   scm_gc_mark (sc->header_);
-  scm_gc_mark (sc->texts_);
   for (int i = sc->defs_.size (); i--;)
     scm_gc_mark (sc->defs_[i]->self_scm ());
   return sc->music_;
@@ -69,7 +67,6 @@ Score::Score (Score const &s)
 {
   header_ = SCM_EOL;
   music_ = SCM_EOL;
-  texts_ = SCM_EOL;
   error_found_ = s.error_found_;
   smobify_self ();
 
@@ -91,8 +88,6 @@ Score::Score (Score const &s)
   header_ = ly_make_anonymous_module (false);
   if (ly_is_module (s.header_))
     ly_module_copy (header_, s.header_);
-
-  texts_ = s.texts_;
 }
 
 void