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
path: root/mcs
diff options
context:
space:
mode:
authorAlp Toker <alp@mono-cvs.ximian.com>2006-03-07 05:21:38 +0300
committerAlp Toker <alp@mono-cvs.ximian.com>2006-03-07 05:21:38 +0300
commit646ed151548534341208b8d3aee7ec570278b721 (patch)
tree25ae9fd975d3881231044407d8ed2362d4612ef6 /mcs
parentdde5dd2091bf458cb56f201e1181356141792143 (diff)
Fix build by updating MdiChildContext.cs as intended by previous commit.
svn path=/trunk/mcs/; revision=57643
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog1
-rw-r--r--mcs/class/Managed.Windows.Forms/System.Windows.Forms/MdiChildContext.cs2
2 files changed, 2 insertions, 1 deletions
diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
index c5dfbfc396c..0c8a7650a0a 100644
--- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
+++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
@@ -2,6 +2,7 @@
* MdiClient.cs: Redid scrolling logic a bit to create a virtual
box and base calculations off this.
+ * MdiChildContext.cs:
* MdiWindowManager.cs: Don't need to ensure scrollbars here
anymore.
diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/MdiChildContext.cs b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/MdiChildContext.cs
index b9198b2c031..2b85991daca 100644
--- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/MdiChildContext.cs
+++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/MdiChildContext.cs
@@ -364,7 +364,7 @@ namespace System.Windows.Forms {
virtual_position.Width = form.Width;
virtual_position.Height = form.Height;
- mdi_container.EnsureScrollBars (virtual_position.Right, virtual_position.Bottom);
+ //mdi_container.EnsureScrollBars (virtual_position.Right, virtual_position.Bottom);
DrawVirtualPosition ();
}