This commit is contained in:
zeromus 2011-02-20 01:04:58 +00:00
parent f623285cab
commit b72c1b6827
1 changed files with 4 additions and 4 deletions

View File

@ -32,12 +32,12 @@ namespace BizHawk.MultiClient
SearchListView.VirtualMode = true;
}
void SearchListView_QueryItemText(int item, int subItem, out string text)
void SearchListView_QueryItemText(int index, int column, out string text)
{
text = "";
if (subItem == 0) text = searchList[item].address.ToString("x");
if (subItem == 1) text = searchList[item].value.ToString();
if (subItem == 3) text = searchList[item].changecount.ToString();
if (column == 0) text = searchList[index].address.ToString("x");
if (column == 1) text = searchList[index].value.ToString();
if (column == 3) text = searchList[index].changecount.ToString();
}
public void UpdateValues()