From 478e177707737a71b0d87bc409efc39287f37eb6 Mon Sep 17 00:00:00 2001 From: Chris Toshok Date: Sat, 10 Mar 2007 01:32:45 +0000 Subject: [PATCH] * Control.cs: really remove the call to XplatUI.SetVisible from CreateHandle(), like I said I did when I merged the branch. svn path=/trunk/mcs/; revision=74044 --- mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog | 3 +++ mcs/class/Managed.Windows.Forms/System.Windows.Forms/Control.cs | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog index 290dc4f1a54..e09de9eae78 100644 --- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog +++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog @@ -1,5 +1,8 @@ 2007-03-09 Chris Toshok + * Control.cs: really remove the call to XplatUI.SetVisible from + CreateHandle(), like I said I did when I merged the branch. + * BindingSource.cs: implement some more of this stuff. 2007-03-09 Jackson Harper diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/Control.cs b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/Control.cs index 503d73ffc2a..de197cd4f49 100644 --- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/Control.cs +++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/Control.cs @@ -3761,7 +3761,6 @@ namespace System.Windows.Forms creator_thread = Thread.CurrentThread; XplatUI.EnableWindow(window.Handle, is_enabled); - XplatUI.SetVisible(window.Handle, is_visible, true); if (clip_region != null) { XplatUI.SetClipRegion(window.Handle, clip_region); -- 2.11.4.GIT