Ram Watch - cleanup

This commit is contained in:
andres.delikat 2011-01-21 17:46:02 +00:00
parent faf4095f62
commit d263848a89
2 changed files with 1 additions and 9 deletions

View File

@ -290,7 +290,6 @@
this.WatchListView.UseCompatibleStateImageBehavior = false;
this.WatchListView.View = System.Windows.Forms.View.Details;
this.WatchListView.AfterLabelEdit += new System.Windows.Forms.LabelEditEventHandler(this.WatchListView_AfterLabelEdit);
this.WatchListView.SelectedIndexChanged += new System.EventHandler(this.WatchListView_SelectedIndexChanged);
//
// Address
//

View File

@ -41,7 +41,7 @@ namespace BizHawk.MultiClient
InitializeComponent();
}
public int HowMany(string str, char c) //Shouldn't something like this exist already? Counts how many times c in in str
public int HowMany(string str, char c)
{
int count = 0;
for (int x = 0; x < str.Length; x++)
@ -588,13 +588,6 @@ namespace BizHawk.MultiClient
this.Size = new System.Drawing.Size(defaultWidth, defaultHeight);
}
private void WatchListView_SelectedIndexChanged(object sender, EventArgs e)
{
//TODO: debug/testing
ListView.SelectedIndexCollection i = this.WatchListView.SelectedIndices;
i = WatchListView.SelectedIndices;
}
private void newToolStripButton_Click(object sender, EventArgs e)
{
NewWatchList();