Merge pull request #4621 from alexanderkyte/strdup_env
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / FormViewInsertEventArgs.cs
index 922e7bcb3de446b95986ca46cdd06f3a610e8d99..c189c852341208dee3ffcaf61ce678eb39269888 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)
 //
 
 //
@@ -28,8 +28,6 @@
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0
-
 using System.Collections.Specialized;
 using System.ComponentModel;
 
@@ -40,9 +38,9 @@ namespace System.Web.UI.WebControls
                object argument;
                IOrderedDictionary values;
                
-               public FormViewInsertEventArgs (object argument)
+               public FormViewInsertEventArgs (object commandArgument)
                {
-                       this.argument = argument;
+                       this.argument = commandArgument;
                }
                
                internal FormViewInsertEventArgs (object argument, IOrderedDictionary values)
@@ -61,4 +59,3 @@ namespace System.Web.UI.WebControls
        }
 }
 
-#endif