From: Han-Wen Nienhuys Date: Mon, 12 Apr 2004 22:15:55 +0000 (+0000) Subject: (find_create_context): assign to lvalue. X-Git-Tag: release/2.3.1~88 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=7a748b8d385139bf3c68d1370a119d277d92134b;p=lilypond.git (find_create_context): assign to lvalue. --- diff --git a/ChangeLog b/ChangeLog index 76269cde92..7b55b619a8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-04-13 Han-Wen Nienhuys + + * lily/context.cc (find_create_context): assign to lvalue. + 2004-04-12 Han-Wen Nienhuys * 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 diff --git a/lily/context.cc b/lily/context.cc index 6f0d2fcffb..b97a5f1a62 100644 --- a/lily/context.cc +++ b/lily/context.cc @@ -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);