Remove unused event - thx OmrSi :)

This commit is contained in:
niksedk 2021-11-27 23:10:19 +01:00
parent 06dfc566db
commit 85b47e83bc
2 changed files with 0 additions and 7 deletions

View File

@ -420,7 +420,6 @@
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Spell check";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.SpellCheck_FormClosing);
this.Load += new System.EventHandler(this.SpellCheck_Load);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FormSpellCheck_KeyDown);
this.contextMenuStrip1.ResumeLayout(false);
this.groupBoxWordNotFound.ResumeLayout(false);
@ -431,7 +430,6 @@
this.groupBoxEditWholeText.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion

View File

@ -1334,10 +1334,5 @@ namespace Nikse.SubtitleEdit.Forms
DoAction(SpellCheckAction.DeleteLine);
}
}
private void SpellCheck_Load(object sender, EventArgs e)
{
}
}
}