Browse Source

Changed point name once again

pull/683/head
OronDF343 10 years ago
committed by GitHub
parent
commit
f4c5293ece
  1. 10
      src/Avalonia.Controls/PointEventArgs.cs

10
src/Avalonia.Controls/PointEventArgs.cs

@ -13,15 +13,15 @@ namespace Avalonia.Controls
/// <summary>
/// Initializes a new instance of the <see cref="PointEventArgs"/> class.
/// </summary>
/// <param name="data">The <see cref="Point"/> data.</param>
public PointEventArgs(Point data)
/// <param name="point">The <see cref="Point"/> data.</param>
public PointEventArgs(Point point)
{
Data = data;
Point = point;
}
/// <summary>
/// Gets the <see cref="Point"/> data.
/// </summary>
public Point Data { get; }
public Point Point { get; }
}
}
}

Loading…
Cancel
Save