Author: pbartok
Date: 2005-04-25 18:37:58 -0400 (Mon, 25 Apr 2005)
New Revision: 43566

Modified:
   trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
   trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/LinkLabel.cs
Log:
2005-04-25  Peter Bartok  <[EMAIL PROTECTED]>

        * LinkLabel.cs: Length of LinkArea is not allowed to be negative



Modified: trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
===================================================================
--- trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog        
2005-04-25 22:07:47 UTC (rev 43565)
+++ trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog        
2005-04-25 22:37:58 UTC (rev 43566)
@@ -1,3 +1,7 @@
+2005-04-25  Peter Bartok  <[EMAIL PROTECTED]>
+
+       * LinkLabel.cs: Length of LinkArea is not allowed to be negative
+
 2005-04-25  Jackson Harper  <[EMAIL PROTECTED]>
 
        * TreeView.cs: Use the horizontal scrollbars height not width when

Modified: 
trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/LinkLabel.cs
===================================================================
--- trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/LinkLabel.cs     
2005-04-25 22:07:47 UTC (rev 43565)
+++ trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/LinkLabel.cs     
2005-04-25 22:37:58 UTC (rev 43566)
@@ -84,7 +84,7 @@
 
                public LinkLabel ()
                {
-                       LinkArea = new LinkArea (0, -1);
+                       LinkArea = new LinkArea (0, 0);
                        link_behavior = LinkBehavior.SystemDefault;
                        link_visited = false;
                        link_click = false;

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to