From 6df11a856406cd68341d92771cab156f6194cb2f Mon Sep 17 00:00:00 2001 From: Stefanos A Date: Sat, 12 Oct 2013 15:16:05 +0200 Subject: [PATCH] Fixed incorrect self-assignment statements --- Source/OpenTK/Minimal.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/OpenTK/Minimal.cs b/Source/OpenTK/Minimal.cs index 3822148f..f51ce84d 100644 --- a/Source/OpenTK/Minimal.cs +++ b/Source/OpenTK/Minimal.cs @@ -441,11 +441,11 @@ namespace OpenTK /// /// The top-left corner of the RectangleF. /// The width and height of the RectangleF. - public RectangleF(PointF location, SizeF SizeF) + public RectangleF(PointF location, SizeF size) : this() { Location = location; - SizeF = SizeF; + Size = size; } /// @@ -1611,7 +1611,7 @@ namespace OpenTK { Width = width; Height = height; - stride = stride; + Stride = stride; } public IntPtr Scan0 { get { return IntPtr.Zero; } }