Ram Watch - cleanup
This commit is contained in:
parent
faf4095f62
commit
d263848a89
|
@ -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
|
||||
//
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue