Use naming consistent with return types & behavior

- Issue MatterHackers/MCCentral#4554
Remove Profile nomenclature from ProfileManager
This commit is contained in:
John Lewin 2018-11-15 15:34:13 -08:00
parent 6de4906ee9
commit 5fe1d0e225
5 changed files with 14 additions and 18 deletions

View file

@ -173,7 +173,7 @@ namespace MatterHackers.MatterControl.PrinterControls.PrinterConnections
bool controlsValid = this.ValidateControls();
if (controlsValid)
{
var printer = await ProfileManager.CreateProfileAsync(activeMake, activeModel, activeName);
var printer = await ProfileManager.CreatePrinterAsync(activeMake, activeModel, activeName);
if (printer == null)
{
this.printerNameError.Text = "Error creating profile".Localize();