From 57c0a313a45ca6ec31aa2da605fdd83011e46981 Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Fri, 21 Feb 2020 10:05:03 +0100 Subject: [PATCH] Fixed typo in an error message --- src/slic3r/GUI/BackgroundSlicingProcess.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/BackgroundSlicingProcess.cpp b/src/slic3r/GUI/BackgroundSlicingProcess.cpp index 53c3ec5ea2..363a7d8e10 100644 --- a/src/slic3r/GUI/BackgroundSlicingProcess.cpp +++ b/src/slic3r/GUI/BackgroundSlicingProcess.cpp @@ -110,12 +110,12 @@ void BackgroundSlicingProcess::process_fff() } else if (with_check && copy_ret_val == -4) { - std::string err_msg = "Copying of the temporary G-code has finnished but the original code at "+ m_temp_output_path +" couldn't be opened during copy check. The output G-code is at " + export_path + ".tmp."; + std::string err_msg = "Copying of the temporary G-code has finished but the original code at "+ m_temp_output_path +" couldn't be opened during copy check. The output G-code is at " + export_path + ".tmp."; throw std::runtime_error(_utf8(L(err_msg))); } else if (with_check && copy_ret_val == -5) { - std::string err_msg = "Copying of the temporary G-code has finnished but the exported code couldn't be opened during copy check. The output G-code is at " + export_path + ".tmp."; + std::string err_msg = "Copying of the temporary G-code has finished but the exported code couldn't be opened during copy check. The output G-code is at " + export_path + ".tmp."; throw std::runtime_error(_utf8(L(err_msg))); } else if (copy_ret_val == -3)