From 6ebb02ccea1c6978a993b0eeed1a2bc0f0d0fd8f Mon Sep 17 00:00:00 2001 From: Diogo Martinho Date: Fri, 19 Apr 2019 00:05:18 +0100 Subject: [PATCH 1/2] I actually felt triggered by this --- src/System.Windows.Forms/src/System/Windows/Forms/Form.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/System.Windows.Forms/src/System/Windows/Forms/Form.cs b/src/System.Windows.Forms/src/System/Windows/Forms/Form.cs index a01e7b0af6a..ce604018e2e 100644 --- a/src/System.Windows.Forms/src/System/Windows/Forms/Form.cs +++ b/src/System.Windows.Forms/src/System/Windows/Forms/Form.cs @@ -154,13 +154,13 @@ public class Form : ContainerControl { private static readonly int PropMdiWindowListStrip = PropertyStore.CreateKey(); private static readonly int PropMdiControlStrip = PropertyStore.CreateKey(); - private static readonly int PropOpacity = PropertyStore.CreateKey(); + private static readonly int PropOpacity = PropertyStore.CreateKey(); private static readonly int PropTransparencyKey = PropertyStore.CreateKey(); // Form per instance members // Note: Do not add anything to this list unless absolutely neccessary. - private BitVector32 formState = new BitVector32(0x21338); // magic value... all the defaults... see the ctor for details... + private BitVector32 formState = new BitVector32(0x21338); // magic value... all the defaults... see the ctor for details... private BitVector32 formStateEx = new BitVector32(); @@ -170,7 +170,7 @@ public class Form : ContainerControl { private Size minAutoSize = Size.Empty; private Rectangle restoredWindowBounds = new Rectangle(-1, -1, -1, -1); private BoundsSpecified restoredWindowBoundsSpecified; - private DialogResult dialogResult; + private DialogResult dialogResult; private MdiClient ctlClient; private NativeWindow ownerWindow; private bool rightToLeftLayout = false; From 4315f5d4aac5578fc93d46361b2053e67f569608 Mon Sep 17 00:00:00 2001 From: Diogo Martinho Date: Fri, 19 Apr 2019 00:40:57 +0100 Subject: [PATCH 2/2] Update Form.cs --- src/System.Windows.Forms/src/System/Windows/Forms/Form.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/System.Windows.Forms/src/System/Windows/Forms/Form.cs b/src/System.Windows.Forms/src/System/Windows/Forms/Form.cs index ce604018e2e..eae768fbd6a 100644 --- a/src/System.Windows.Forms/src/System/Windows/Forms/Form.cs +++ b/src/System.Windows.Forms/src/System/Windows/Forms/Form.cs @@ -160,7 +160,7 @@ public class Form : ContainerControl { // Form per instance members // Note: Do not add anything to this list unless absolutely neccessary. - private BitVector32 formState = new BitVector32(0x21338); // magic value... all the defaults... see the ctor for details... + private BitVector32 formState = new BitVector32(0x21338); // magic value... all the defaults... see the ctor for details... private BitVector32 formStateEx = new BitVector32();