Skip to content

Commit

Permalink
Fixed #119
Browse files Browse the repository at this point in the history
  • Loading branch information
lhchavez committed Apr 15, 2012
1 parent a449093 commit 7758bf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gchat/Data/Roster.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public Roster() {

public void Update(Contact item) {
if (CollectionChanged != null) {
CollectionChanged(this, new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset, item, IndexOf(item)));
CollectionChanged(this, new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset, item, item, IndexOf(item)));
}
}

Expand Down

0 comments on commit 7758bf2

Please sign in to comment.