You've already forked linux-packaging-mono
Imported Upstream version 5.2.0.175
Former-commit-id: bb0468d0f257ff100aa895eb5fe583fb5dfbf900
This commit is contained in:
parent
4bdbaf4a88
commit
966bba02bb
@ -40,15 +40,15 @@ namespace System.Web.UI.WebControls
|
||||
object dataItem;
|
||||
int index;
|
||||
|
||||
public MenuItemTemplateContainer (int itemIndex, MenuItem menuItem)
|
||||
public MenuItemTemplateContainer (int itemIndex, MenuItem dataItem)
|
||||
{
|
||||
index = itemIndex;
|
||||
dataItem = menuItem;
|
||||
this.index = itemIndex;
|
||||
this.dataItem = dataItem;
|
||||
}
|
||||
|
||||
protected override bool OnBubbleEvent (object source, EventArgs args)
|
||||
protected override bool OnBubbleEvent (object source, EventArgs e)
|
||||
{
|
||||
CommandEventArgs command = args as CommandEventArgs;
|
||||
CommandEventArgs command = e as CommandEventArgs;
|
||||
if (command == null)
|
||||
return false;
|
||||
|
||||
|
Reference in New Issue
Block a user