Merge pull request #4621 from alexanderkyte/strdup_env
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / FormViewInsertEventArgs.cs
index be8596fc7ff94eeb250b80bc86d31248b5b08166..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;
 
@@ -37,12 +35,12 @@ namespace System.Web.UI.WebControls
 {
        public class FormViewInsertEventArgs : CancelEventArgs
        {
-               private object argument;
-               private IOrderedDictionary values;
+               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