Fixed incorrect self-assignment statements

This commit is contained in:
Stefanos A 2013-10-12 15:16:05 +02:00
parent 30e42bb6dd
commit 6df11a8564

View file

@ -441,11 +441,11 @@ namespace OpenTK
/// </summary> /// </summary>
/// <param name="location">The top-left corner of the RectangleF.</param> /// <param name="location">The top-left corner of the RectangleF.</param>
/// <param name="SizeF">The width and height of the RectangleF.</param> /// <param name="SizeF">The width and height of the RectangleF.</param>
public RectangleF(PointF location, SizeF SizeF) public RectangleF(PointF location, SizeF size)
: this() : this()
{ {
Location = location; Location = location;
SizeF = SizeF; Size = size;
} }
/// <summary> /// <summary>
@ -1611,7 +1611,7 @@ namespace OpenTK
{ {
Width = width; Width = width;
Height = height; Height = height;
stride = stride; Stride = stride;
} }
public IntPtr Scan0 { get { return IntPtr.Zero; } } public IntPtr Scan0 { get { return IntPtr.Zero; } }