* MdiClient.cs:
authorRolf Bjarne Kvinge <RKvinge@novell.com>
Mon, 4 Dec 2006 18:26:17 +0000 (18:26 -0000)
committerRolf Bjarne Kvinge <RKvinge@novell.com>
Mon, 4 Dec 2006 18:26:17 +0000 (18:26 -0000)
* MdiWindowManager: Removed unused fields and methods.
2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>

svn path=/trunk/mcs/; revision=68981

mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
mcs/class/Managed.Windows.Forms/System.Windows.Forms/MdiClient.cs
mcs/class/Managed.Windows.Forms/System.Windows.Forms/MdiWindowManager.cs

index bc698a6f52ebbe365c107158790fca54e7cac331..1671ce2f6da963646b537953489e6c318693dd2e 100644 (file)
@@ -1,3 +1,8 @@
+2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
+
+       * MdiClient.cs: 
+       * MdiWindowManager: Removed unused fields and methods.
+       
 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
        
        * StatusBar.cs: Update all panels when a AutoSize=Contents
index a5aab6c38f14fd1198ec204cd81a4e6fb997abb2..248d05b777e92691252aecea90db346d9e90a8ca 100644 (file)
@@ -45,7 +45,6 @@ namespace System.Windows.Forms {
                private bool lock_sizing;
                private bool initializing_scrollbars;
                private int prev_bottom;
-               private LayoutEventHandler initial_layout_handler;
                private bool setting_windowstates = false;
                internal ArrayList mdi_child_list;
                private string form_text;
@@ -491,11 +490,6 @@ namespace System.Windows.Forms {
                        prev_bottom = Bottom;
                }
 
-               private void FormLocationChanged (object sender, EventArgs e)
-               {
-                       SizeScrollBars ();
-               }
-
                internal void ArrangeIconicWindows ()
                {
                        int xspacing = 160;
index f17877a0daeccef5c3c14d5d84f3ae5830fa9649..4783b20743ab5ea79d5cbd4a6741d2ef998fb9d6 100644 (file)
@@ -34,8 +34,6 @@ namespace System.Windows.Forms {
 
        internal class MdiWindowManager : InternalWindowManager {
 
-               private static readonly int MdiBorderStyle = 0xFFFF;
-
                private MainMenu merged_menu;
                private MainMenu maximized_menu;
                private MenuItem icon_menu;
@@ -51,7 +49,6 @@ namespace System.Windows.Forms {
                private Rectangle prev_bounds;
 
                internal Rectangle IconicBounds;
-               internal int mdi_index;
 
                public MdiWindowManager (Form form, MdiClient mdi_container) : base (form)
                {