Skip to content

Commit

Permalink
Renamed NotifyPropertyChanged to be less generic as it clashes with n…
Browse files Browse the repository at this point in the history
…ames people are already using for the same purpose
  • Loading branch information
stewienj committed Jul 27, 2020
1 parent ed668c2 commit 4eeb37d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public HeatMapOnMapSample()
}
}

public class HeatMapOnMapSampleViewModel : NotifyPropertyChanged
public class HeatMapOnMapSampleViewModel : D3NotifyPropertyChanged
{
private ChartPlotter _chartPlotter;
private Grid _grid;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

namespace DynamicDataDisplay.Common.Auxiliary
{
public class NotifyPropertyChanged : INotifyPropertyChanged
public class D3NotifyPropertyChanged : INotifyPropertyChanged
{
/// <summary>
/// Checks if the value has changed and uses the call stack to determine
Expand Down
2 changes: 1 addition & 1 deletion src/DynamicDataDisplay/DynamicDataDisplay.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@
<Compile Include="Common\Auxiliary\MarkupExtensions\XbapConditionalExpression.cs" />
<Compile Include="Common\Auxiliary\MarkupExtensions\TemplateBinding.cs" />
<Compile Include="Common\Auxiliary\MenuItemExtensions.cs" />
<Compile Include="Common\Auxiliary\NotifyPropertyChanged.cs" />
<Compile Include="Common\Auxiliary\D3NotifyPropertyChanged.cs" />
<Compile Include="Common\Auxiliary\ObservableCollectionHelper.cs" />
<Compile Include="Common\Auxiliary\PlotterChildrenCollectionExtensions.cs" />
<Compile Include="Common\Auxiliary\RandomExtensions.cs" />
Expand Down

0 comments on commit 4eeb37d

Please sign in to comment.