Mass rename to align planned codename

This commit is contained in:
TheXamlGuy
2024-05-27 16:08:18 +01:00
parent dd55a67102
commit 3498c1d678
2 changed files with 14 additions and 6 deletions
+2 -2
View File
@@ -193,7 +193,7 @@ public partial class ObservableCollection<TItem> :
}
object? key = this.GetPropertyValue(() => attribute.Key) is { } value ? value : attribute.Key;
Publisher.PublishUI(OnPrepareAggregation(key));
Publisher.PublishUI(OnAggerate(key));
}
}
@@ -494,7 +494,7 @@ public partial class ObservableCollection<TItem> :
collection.Insert(index > Count ? Count : index, item);
}
protected virtual IAggerate OnPrepareAggregation(object? key) =>
protected virtual IAggerate OnAggerate(object? key) =>
new AggerateEventArgs<TItem>() with { Key = key };
protected virtual void RemoveItem(int index) =>