small spelling mistake in function name

This commit is contained in:
Tim Young 2017-08-02 09:36:39 -05:00
parent cf5f618830
commit e594f8bac8
2 changed files with 2 additions and 2 deletions

View File

@ -208,7 +208,7 @@
this.btnLaunch.TabIndex = 11;
this.btnLaunch.Text = "Launch";
this.btnLaunch.UseVisualStyleBackColor = true;
this.btnLaunch.Click += new System.EventHandler(this.btLaunch_Click);
this.btnLaunch.Click += new System.EventHandler(this.btnLaunch_Click);
//
// btnHWDelete
//

View File

@ -490,7 +490,7 @@ namespace EduNetworkBuilder
}
}
private void btLaunch_Click(object sender, EventArgs e)
private void btnLaunch_Click(object sender, EventArgs e)
{
BuilderWindow BW = NB.GetBuilderWin();
if(BW != null && ViewedSchoolwork != null && ViewedSchoolwork.theProject != null)