dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/System.Windows.Forms Control.cs,1.2,1


From: Gopal.V <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/System.Windows.Forms Control.cs,1.2,1.3
Date: Wed, 11 Jun 2003 15:07:26 -0400

Update of /cvsroot/dotgnu-pnet/pnetlib/System.Windows.Forms
In directory subversions:/tmp/cvs-serv16837/System.Windows.Forms

Modified Files:
        Control.cs 
Log Message:
Fix to Bounds property


Index: Control.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/System.Windows.Forms/Control.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** Control.cs  11 Jun 2003 10:37:27 -0000      1.2
--- Control.cs  11 Jun 2003 19:07:24 -0000      1.3
***************
*** 348,357 ****
                                get
                                {
!                                       return new Rectangle(top, left, width, 
height);
                                }
                                set
                                {
!                                       SetBoundsCore(top, left, width, height,
!                                                                 
BoundsSpecified.All);
                                }
                        }
--- 348,357 ----
                                get
                                {
!                                       return new Rectangle(left, top, width, 
height);
                                }
                                set
                                {
!                                       SetBoundsCore(value.Left, value.Top, 
value.Width, 
!                                                                       
value.Height, BoundsSpecified.All);
                                }
                        }





reply via email to

[Prev in Thread] Current Thread [Next in Thread]