* Timer.cs, Control.cs, Menu.cs: make control_tag private.
authorChris Toshok <toshok@novell.com>
Wed, 6 Dec 2006 16:08:24 +0000 (16:08 -0000)
committerChris Toshok <toshok@novell.com>
Wed, 6 Dec 2006 16:08:24 +0000 (16:08 -0000)
2006-12-06  Chris Toshok  <toshok@ximian.com>

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

mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
mcs/class/Managed.Windows.Forms/System.Windows.Forms/Control.cs
mcs/class/Managed.Windows.Forms/System.Windows.Forms/Menu.cs
mcs/class/Managed.Windows.Forms/System.Windows.Forms/Timer.cs

index 4ab90030671d6e12df1badce839b9a7121acc322..3747c39dd64d5d16dd61c7153a88074ae887ec69 100644 (file)
@@ -1,3 +1,7 @@
+2006-12-06  Chris Toshok  <toshok@ximian.com>
+
+       * Timer.cs, Control.cs, Menu.cs: make control_tag private.
+
 2006-12-06  Chris Toshok  <toshok@ximian.com>
 
        * Control.cs: make right_to_left and context_menu fields private.
index fecd8416d077f39537dbead2f6b5065cdd159ef5..a3608b68a89f0fa691e8445a6f6e04a522112b69 100644 (file)
@@ -86,7 +86,7 @@ namespace System.Windows.Forms
                internal ControlStyles          control_style;          // rather win32-specific, style bits for control
                internal ImeMode                ime_mode = ImeMode.Inherit;
                bool layout_pending; // true if our parent needs to re-layout us
-               internal object                 control_tag;            // object that contains data about our control
+               object control_tag; // object that contains data about our control
                internal int                    mouse_clicks;           // Counter for mouse clicks
                internal Cursor                 cursor;                 // Cursor for the window
                internal bool                   allow_drop;             // true if the control accepts droping objects on it   
index dc20331ff3f91a497473c73e84c253ef8223cb86..0bd30ce9f97640e17000c21c62c9b2a551315b4d 100644 (file)
@@ -49,7 +49,7 @@ namespace System.Windows.Forms
                internal MenuTracker tracker;
 
 #if NET_2_0
-               internal object control_tag;
+               object control_tag;
 #endif
 
                public const int FindHandle = 0;
index 82814c122f8860aca4ddd2525a29c60f89f9c195..3b26332245c1dcdfcb90aa7f750fdd6976663c12 100644 (file)
@@ -39,7 +39,7 @@ namespace System.Windows.Forms {
                internal Thread thread;
 
 #if NET_2_0
-               internal object control_tag;
+               object control_tag;
 #endif
                internal static readonly int Minimum = 15;