From d263848a89b9bebb27cda6862e8514dcbf4c880a Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Fri, 21 Jan 2011 17:46:02 +0000 Subject: [PATCH] Ram Watch - cleanup --- BizHawk.MultiClient/RamWatch.Designer.cs | 1 - BizHawk.MultiClient/RamWatch.cs | 9 +-------- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/BizHawk.MultiClient/RamWatch.Designer.cs b/BizHawk.MultiClient/RamWatch.Designer.cs index 0e99717dbf..40b8414a8a 100644 --- a/BizHawk.MultiClient/RamWatch.Designer.cs +++ b/BizHawk.MultiClient/RamWatch.Designer.cs @@ -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 // diff --git a/BizHawk.MultiClient/RamWatch.cs b/BizHawk.MultiClient/RamWatch.cs index 95a6491611..2414d7968a 100644 --- a/BizHawk.MultiClient/RamWatch.cs +++ b/BizHawk.MultiClient/RamWatch.cs @@ -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();