From: fred Date: Sun, 24 Mar 2002 19:45:22 +0000 (+0000) Subject: lilypond-0.0.67 X-Git-Tag: release/1.5.59~4610 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=781bc9a4b0338cbc13a4682fd658f2bd950aa1bd;p=lilypond.git lilypond-0.0.67 --- diff --git a/lily/include/local-key-item.hh b/lily/include/local-key-item.hh index 24f48e3115..a80e44196e 100644 --- a/lily/include/local-key-item.hh +++ b/lily/include/local-key-item.hh @@ -23,7 +23,7 @@ struct Local_acc { update item if Items are removed */ struct Local_key_item : Item { - NAME_MEMBERS(Local_key_item); + NAME_MEMBERS(); Array accs; Link_array support_items_; int c0_position; @@ -31,7 +31,7 @@ struct Local_key_item : Item { /* *************** */ Local_key_item(int c0position); - void add(Item*); + void add_support(Item*); void add(int oct, int pitch, int acc); void add(Melodic_req*); public: diff --git a/lily/local-key-item.cc b/lily/local-key-item.cc index 50aba0bf41..d53299c9e9 100644 --- a/lily/local-key-item.cc +++ b/lily/local-key-item.cc @@ -23,7 +23,7 @@ Local_key_item::Local_key_item(int i) } void -Local_key_item::add(Item*head_l) +Local_key_item::add_support(Item*head_l) { support_items_.push(head_l); add_dependency(head_l);