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> /// <summary>
/// Initializes a new instance of the <see cref="PointEventArgs"/> class. /// Initializes a new instance of the <see cref="PointEventArgs"/> class.
/// </summary> /// </summary>
/// <param name="data">The <see cref="Point"/> data.</param> /// <param name="point">The <see cref="Point"/> data.</param>
public PointEventArgs(Point data) public PointEventArgs(Point point)
{ {
Data = data; Point = point;
} }
/// <summary> /// <summary>
/// Gets the <see cref="Point"/> data. /// Gets the <see cref="Point"/> data.
/// </summary> /// </summary>
public Point Data { get; } public Point Point { get; }
} }
} }

Loading…
Cancel
Save