Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRolf Bjarne Kvinge <RKvinge@novell.com>2007-01-23 19:07:39 +0300
committerRolf Bjarne Kvinge <RKvinge@novell.com>2007-01-23 19:07:39 +0300
commitae2c76e00d488134db1cc600f21715f8970a63e6 (patch)
tree59b46a5d455e70ee53b30eb0a7429b13f03470f4
parent34ef8c5e227d20a840ca8f713d5cf99ce68f97f4 (diff)
Fixed dumb typo.
svn path=/trunk/mcs/; revision=71516
-rw-r--r--mcs/class/Managed.Windows.Forms/System.Windows.Forms/MdiWindowManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/MdiWindowManager.cs b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/MdiWindowManager.cs
index dcc4daad137..4c0288852fa 100644
--- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/MdiWindowManager.cs
+++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/MdiWindowManager.cs
@@ -350,7 +350,7 @@ namespace System.Windows.Forms {
public override void SetWindowState (FormWindowState old_state, FormWindowState window_state)
{
- mdi_container.SetWindowState (form, old_state, window_state, true);
+ mdi_container.SetWindowState (form, old_state, window_state, false);
}
private void FormClosed (object sender, EventArgs e)