[mono-config] use right type for result of strlen
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / GridViewCancelEditEventArgs.cs
index 3e7ae4f706a9deb7811b4de236f9be428b8c6eed..5d26d91310c37aca54de4317f7e683cfe725368c 100644 (file)
@@ -4,7 +4,7 @@
 // Authors:
 //   Sanjay Gupta (gsanjay@novell.com)
 //
-// (C) 2004 Novell, Inc (http://www.novell.com)
+// (C) 2004-2010 Novell, Inc (http://www.novell.com)
 //
 
 //
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0
-
 using System.ComponentModel;
 
 namespace System.Web.UI.WebControls
 {
        public class GridViewCancelEditEventArgs : CancelEventArgs
        {
-               private int rowIndex;
+               int rowIndex;
                
                public GridViewCancelEditEventArgs (int index)
                {
@@ -50,4 +48,3 @@ namespace System.Web.UI.WebControls
        }
 }
 
-#endif