From 12f8200a0b72c09a30136216f57bb83bc8368490 Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Mon, 28 Feb 2011 22:24:02 +1300 Subject: [PATCH] rename another handler in editor --- OpenRA.Editor/Form1.Designer.cs | 2 +- OpenRA.Editor/Form1.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenRA.Editor/Form1.Designer.cs b/OpenRA.Editor/Form1.Designer.cs index 97b3a29913..8cac7eb949 100755 --- a/OpenRA.Editor/Form1.Designer.cs +++ b/OpenRA.Editor/Form1.Designer.cs @@ -449,7 +449,7 @@ this.showActorNamesToolStripMenuItem.Name = "showActorNamesToolStripMenuItem"; this.showActorNamesToolStripMenuItem.Size = new System.Drawing.Size(175, 22); this.showActorNamesToolStripMenuItem.Text = "Show Actor &Names"; - this.showActorNamesToolStripMenuItem.Click += new System.EventHandler(this.showActorNamesToolStripMenuItem_Click); + this.showActorNamesToolStripMenuItem.Click += new System.EventHandler(this.ShowActorNamesClicked); // // Form1 // diff --git a/OpenRA.Editor/Form1.cs b/OpenRA.Editor/Form1.cs index 358528e17a..4c66f59f64 100755 --- a/OpenRA.Editor/Form1.cs +++ b/OpenRA.Editor/Form1.cs @@ -414,7 +414,7 @@ namespace OpenRA.Editor pmMiniMap.Image.Save(saveFileDialog.FileName); } - void showActorNamesToolStripMenuItem_Click(object sender, EventArgs e) + void ShowActorNamesClicked(object sender, EventArgs e) { showActorNamesToolStripMenuItem.Checked ^= true; surface1.ShowActorNames = showActorNamesToolStripMenuItem.Checked;