]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.70pre
authorfred <fred>
Sun, 24 Mar 2002 19:46:04 +0000 (19:46 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:46:04 +0000 (19:46 +0000)
init/register.ini
lily/.version
lily/text-def.cc
lily/text-reg.cc

index 4b8d324fa914d4b5fb2640aeecf4e2dd5873c0cd..a7d3257a9a10f583e8f82d49d7098e4a65a96b21 100644 (file)
@@ -26,7 +26,6 @@
                        \alias "Voice_group";
                        \consists "Dynamic_register";
                        \consists "Stem_beam_register";
-                       \consists "Text_register";
                        \consists "Script_register";
                        \consists "Note_column_register";
                        \consists "Slur_register";
index 779974957f9061a58992188e3d7caa8018cda294..e613199be6f6880f78fed4b4d623af73aaeddde5 100644 (file)
@@ -1,7 +1,7 @@
 MAJOR_VERSION = 0
 MINOR_VERSION = 0
-PATCH_LEVEL = 68
+PATCH_LEVEL = 70
 # use to send patches, always empty for released version:
 # include separator: ".postfix", "-pl" makes rpm barf
 
-MY_PATCH_LEVEL = pre
+MY_PATCH_LEVEL =
index dc7ed6f58a2bd174fc84405ffca96c083e5ec9ad..4d6c641436a4e78c073ba72b73c42a200fcd7934 100644 (file)
@@ -24,12 +24,20 @@ Text_def::width(Paper_def * p) const
     return i;
 }
 
+void
+Text_def::do_print() const
+{
+#ifndef NPRINT
+    mtor << "align " <<align_i_ << " `" << text_str_ << "'";
+#endif
+}
 
 Text_def::Text_def()
 {   
     align_i_ = 1;                      // right
     style_str_ = "roman";
 }
+
 bool
 Text_def::do_equal_b(Text_def const &def)const
 {
@@ -49,5 +57,6 @@ Text_def::print() const
     mtor << "Text `" << text_str_ << "\', style " <<
        style_str_ << "align " << align_i_ << '\n';
 }
+
 IMPLEMENT_STATIC_NAME(Text_def);
 IMPLEMENT_IS_TYPE_B1(Text_def,General_script_def);
index 99c35d276b4477ad4efd184b425e7b0790af0f1b..ed793eeab8d2cd36d394d3c9540eaf6e5937892c 100644 (file)
@@ -2,6 +2,8 @@
   text-reg.cc -- implement Text_register
 
   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+
+  Obsolete.
 */
 #include "note-column.hh"
 #include "musical-request.hh"