# HG changeset patch # User IBBoard # Date 1246126822 0 # Node ID b8de1727108487d5b24020287b3106a676bf82e7 # Parent 84f61658e3204d37188f7466dc554a28137ba4b3 * Fix line terminators no-open-ticket diff -r 84f61658e320 -r b8de17271084 FrmMain.cs --- a/FrmMain.cs Sat Jun 27 11:41:18 2009 +0000 +++ b/FrmMain.cs Sat Jun 27 18:20:22 2009 +0000 @@ -424,7 +424,7 @@ this.miReloadFiles, this.miSep3, this.miExit}); - this.menuFile.Text = "&file"; + this.menuFile.Text = "&file"; this.menuFile.Name = "menuFile"; // // miNewArmy @@ -432,14 +432,14 @@ this.miNewArmy.Enabled = false; this.miNewArmy.Index = 0; this.miNewArmy.Text = "&new army"; - this.miNewArmy.Click += new System.EventHandler(this.miNewArmy_Click); + this.miNewArmy.Click += new System.EventHandler(this.miNewArmy_Click); this.miNewArmy.Name = "miNewArmy"; // // miOpenArmy // this.miOpenArmy.Index = 1; this.miOpenArmy.Text = "&open army"; - this.miOpenArmy.Click += new System.EventHandler(this.miOpenArmy_Click); + this.miOpenArmy.Click += new System.EventHandler(this.miOpenArmy_Click); this.miOpenArmy.Name = "miOpenArmy"; // // miSaveArmy @@ -447,7 +447,7 @@ this.miSaveArmy.Enabled = false; this.miSaveArmy.Index = 2; this.miSaveArmy.Text = "&save army"; - this.miSaveArmy.Click += new System.EventHandler(this.miSaveArmy_Click); + this.miSaveArmy.Click += new System.EventHandler(this.miSaveArmy_Click); this.miSaveArmy.Name = "miSaveArmy"; // // miSaveArmyAs @@ -455,7 +455,7 @@ this.miSaveArmyAs.Enabled = false; this.miSaveArmyAs.Index = 3; this.miSaveArmyAs.Text = "save army &as..."; - this.miSaveArmyAs.Click += new System.EventHandler(this.miSaveArmyAs_Click); + this.miSaveArmyAs.Click += new System.EventHandler(this.miSaveArmyAs_Click); this.miSaveArmyAs.Name = "miSaveArmyAs"; // // miCloseArmy @@ -463,7 +463,7 @@ this.miCloseArmy.Enabled = false; this.miCloseArmy.Index = 4; this.miCloseArmy.Text = "&close army"; - this.miCloseArmy.Click += new System.EventHandler(this.miCloseArmy_Click); + this.miCloseArmy.Click += new System.EventHandler(this.miCloseArmy_Click); this.miCloseArmy.Name = "miCloseArmy"; // // miSep1 @@ -475,7 +475,7 @@ // this.miChangeSystem.Index = 6; this.miChangeSystem.Text = "change &game system"; - this.miChangeSystem.Click += new System.EventHandler(this.miChangeSystem_Click); + this.miChangeSystem.Click += new System.EventHandler(this.miChangeSystem_Click); this.miChangeSystem.Name = "miChangeSystem"; // // miSep2 @@ -487,7 +487,7 @@ // this.miReloadFiles.Index = 8; this.miReloadFiles.Text = "&reload files"; - this.miReloadFiles.Click += new System.EventHandler(this.miReloadFiles_Click); + this.miReloadFiles.Click += new System.EventHandler(this.miReloadFiles_Click); this.miReloadFiles.Name = "miReloadFiles"; // // miSep3 @@ -499,7 +499,7 @@ // this.miExit.Index = 10; this.miExit.Text = "e&xit"; - this.miExit.Click += new System.EventHandler(this.miExit_Click); + this.miExit.Click += new System.EventHandler(this.miExit_Click); this.miExit.Name = "miExit"; // // menuEdit @@ -508,7 +508,7 @@ this.menuEdit.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.miUndo, this.miRedo}); - this.menuEdit.Text = "&edit"; + this.menuEdit.Text = "&edit"; this.menuEdit.Name = "menuEdit"; // // miUndo @@ -516,7 +516,7 @@ this.miUndo.Enabled = false; this.miUndo.Index = 0; this.miUndo.Text = "&undo"; - this.miUndo.Click += new System.EventHandler(this.miUndo_Click); + this.miUndo.Click += new System.EventHandler(this.miUndo_Click); this.miUndo.Name = "miUndo"; // // miRedo @@ -524,7 +524,7 @@ this.miRedo.Enabled = false; this.miRedo.Index = 1; this.miRedo.Text = "&redo"; - this.miRedo.Click += new System.EventHandler(this.miRedo_Click); + this.miRedo.Click += new System.EventHandler(this.miRedo_Click); this.miRedo.Name = "miRedo"; // // menuHelp @@ -533,14 +533,14 @@ this.menuHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { this.miAbout, this.miDebugWindow}); - this.menuHelp.Text = "&help"; + this.menuHelp.Text = "&help"; this.menuHelp.Name = "menuHelp"; // // miAbout // this.miAbout.Enabled = false; this.miAbout.Index = 0; - this.miAbout.Text = "&about"; + this.miAbout.Text = "&about"; this.miAbout.Name = "miAbout"; // // miDebugWindow