Merge pull request #4453 from lambdageek/bug-49721
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / FormViewRow.cs
index ff8b000baaf3c863f006ad619b3aeed2a4e3288c..def2c43e5763c5bb655e0a37a4c1bb9fe5429474 100644 (file)
@@ -46,9 +46,9 @@ namespace System.Web.UI.WebControls
                        get;
                        set;
                }
-               public FormViewRow (int rowIndex, DataControlRowType rowType, DataControlRowState rowState)
+               public FormViewRow (int itemIndex, DataControlRowType rowType, DataControlRowState rowState)
                {
-                       this.rowIndex = rowIndex;
+                       this.rowIndex = itemIndex;
                        this.rowType = rowType;
                        this.rowState = rowState;
                }