Author: alanmc
Date: 2007-04-26 18:41:19 -0400 (Thu, 26 Apr 2007)
New Revision: 76359

Modified:
   trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
   
trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/DrawListViewItemEventArgs.cs
   
trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/DrawListViewSubItemEventArgs.cs
Log:
Fixed two mistakes in my stubbing

Modified: trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
===================================================================
--- trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog        
2007-04-26 22:39:33 UTC (rev 76358)
+++ trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog        
2007-04-26 22:41:19 UTC (rev 76359)
@@ -1,5 +1,10 @@
 2007-04-26  Alan McGovern <[EMAIL PROTECTED]>
 
+       * DrawListViewItemEventArgs.cs
+       * DrawListViewSubItemEventArgs.cs: Brought classes up to 2.0 status.
+
+2007-04-26  Alan McGovern <[EMAIL PROTECTED]>
+
        * TextControl.cs: Fixed typo in constructor
 
 2007-04-26  Jonathan Pobst  <[EMAIL PROTECTED]>

Modified: 
trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/DrawListViewItemEventArgs.cs
===================================================================
--- 
trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/DrawListViewItemEventArgs.cs
     2007-04-26 22:39:33 UTC (rev 76358)
+++ 
trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/DrawListViewItemEventArgs.cs
     2007-04-26 22:41:19 UTC (rev 76359)
@@ -95,7 +95,7 @@
             throw new NotImplementedException();
         }
 
-        public void DrawFocusRectangle(Rectangle bounds)
+        public void DrawFocusRectangle()
         {
             throw new NotImplementedException();
         }

Modified: 
trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/DrawListViewSubItemEventArgs.cs
===================================================================
--- 
trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/DrawListViewSubItemEventArgs.cs
  2007-04-26 22:39:33 UTC (rev 76358)
+++ 
trunk/mcs/class/Managed.Windows.Forms/System.Windows.Forms/DrawListViewSubItemEventArgs.cs
  2007-04-26 22:41:19 UTC (rev 76359)
@@ -35,6 +35,7 @@
 
         private Rectangle bounds;
         private int columnIndex;
+               private bool drawDefault;
         private Graphics graphics;
         private ColumnHeader header;
         private ListViewItem item;
@@ -55,6 +56,10 @@
             get { return columnIndex; }
         }
 
+               public bool DrawDefault {
+                       get { return drawDefault; }
+               }
+
         public Graphics Graphics {
             get { return graphics; }
         }

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

Reply via email to