]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.67
authorfred <fred>
Sun, 24 Mar 2002 19:45:22 +0000 (19:45 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:45:22 +0000 (19:45 +0000)
lily/include/local-key-item.hh
lily/local-key-item.cc

index 24f48e3115ccc3957e9f6646df219f2447d9fc50..a80e44196e602fcecf3316554a1cfde471f0c611 100644 (file)
@@ -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<Local_acc> accs;
     Link_array<Item> 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:
index 50aba0bf41c127ff8e21e424283ff0841e10b470..d53299c9e9c57735c59eb7a5fbbd8dc9b789c6f8 100644 (file)
@@ -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);