File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -599,8 +599,8 @@ namespace ReactiveUI
599
599
public virtual void Move(int oldIndex, int newIndex) { }
600
600
protected void MoveItem(int oldIndex, int newIndex) { }
601
601
protected virtual void publishResetNotification() { }
602
- protected virtual void raiseCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e ) { }
603
- protected virtual void raiseCollectionChanging(System.Collections.Specialized.NotifyCollectionChangedEventArgs e ) { }
602
+ protected virtual void raiseCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs args ) { }
603
+ protected virtual void raiseCollectionChanging(System.Collections.Specialized.NotifyCollectionChangedEventArgs args ) { }
604
604
public virtual bool Remove(T item) { }
605
605
public virtual void RemoveAll(System.Collections.Generic.IEnumerable<T> items) { }
606
606
public virtual void RemoveAt(int index) { }
Original file line number Diff line number Diff line change @@ -77,14 +77,14 @@ public event NotifyCollectionChangedEventHandler CollectionChanged
77
77
remove { CollectionChangedEventManager . RemoveHandler ( this , value ) ; }
78
78
}
79
79
80
- protected virtual void raiseCollectionChanging ( NotifyCollectionChangedEventArgs e )
80
+ protected virtual void raiseCollectionChanging ( NotifyCollectionChangedEventArgs args )
81
81
{
82
- CollectionChangingEventManager . DeliverEvent ( this , e ) ;
82
+ CollectionChangingEventManager . DeliverEvent ( this , args ) ;
83
83
}
84
84
85
- protected virtual void raiseCollectionChanged ( NotifyCollectionChangedEventArgs e )
85
+ protected virtual void raiseCollectionChanged ( NotifyCollectionChangedEventArgs args )
86
86
{
87
- CollectionChangedEventManager . DeliverEvent ( this , e ) ;
87
+ CollectionChangedEventManager . DeliverEvent ( this , args ) ;
88
88
}
89
89
90
90
public event PropertyChangingEventHandler PropertyChanging
You can’t perform that action at this time.
0 commit comments