Fix spelling mistake in function

This commit is contained in:
Tim Young 2017-08-02 09:35:29 -05:00
parent 36947a9bff
commit cf5f618830
2 changed files with 2 additions and 2 deletions

View File

@ -1609,7 +1609,7 @@ namespace EduNetworkBuilder
UpdateForm();
}
public void LoadLetworkFromNetwork(Network NewNet)
public void LoadNetworkFromNetwork(Network NewNet)
{
if (NewNet != null)
{

View File

@ -496,7 +496,7 @@ namespace EduNetworkBuilder
if(BW != null && ViewedSchoolwork != null && ViewedSchoolwork.theProject != null)
{
ViewedSchoolwork.theProject.WhatFrom = ViewedSchoolwork; //Store the homework info. Used for pushing it back
BW.LoadLetworkFromNetwork(ViewedSchoolwork.theProject);
BW.LoadNetworkFromNetwork(ViewedSchoolwork.theProject);
Close(); //Exit out of the profile
}
}