]> git.donarmstrong.com Git - lilypond.git/commitdiff
(find_create_context): assign to lvalue.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Mon, 12 Apr 2004 22:15:55 +0000 (22:15 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Mon, 12 Apr 2004 22:15:55 +0000 (22:15 +0000)
ChangeLog
lily/context.cc

index 76269cde924c8e66483355fd1356bb344c599e81..7b55b619a831346877c356587dd32a2ac512d3fd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-04-13  Han-Wen Nienhuys   <hanwen@xs4all.nl>
+
+       * lily/context.cc (find_create_context): assign to lvalue.
+
 2004-04-12  Han-Wen Nienhuys   <hanwen@xs4all.nl>
 
        * lily/include/translator.hh (class Translator): rename
@@ -50,7 +54,7 @@
        * lily/paper-book.cc (classic_output): don't advance Offset for
        TeX output.
 
-       * make/mutopia-rules.make ($(outdir)-$(PAPERSIZE)/%.dvi): incude
+       * make/mutopia-rules.make ($(outdir)-$(PAPERSIZE)/%.dvi): include
        ec-sauter.map in rules
 
        * mf/ecb.mf (font_identifier): new file, based on ecbx
index 6f0d2fcffb156bf34e3bdc407a23f8974d548f41..b97a5f1a62b0b3812e759d6d16bfa957ff88fad1 100644 (file)
@@ -116,7 +116,7 @@ Context::find_create_context (SCM n, String id,
   if (n == ly_symbol2scm ("Bottom"))
     {
       Context* tg = get_default_interpreter ();
-      tg->id_string () = id;
+      tg->id_string_ = id;
       return tg;
     }
 
@@ -140,7 +140,7 @@ Context::find_create_context (SCM n, String id,
 
          if (i == path.size () -1)
            {
-             new_group->id_string () = id;
+             new_group->id_string_ = id;
            }
 
          current->add_context (new_group);