From edc0aa4bcef65ea0f49c47b6be7aa20db855c9ae Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Fri, 15 Jul 2022 13:49:45 +0200 Subject: [PATCH] Mentioned CuraEngine in the CopyrightsDialog --- src/slic3r/GUI/AboutDialog.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/AboutDialog.cpp b/src/slic3r/GUI/AboutDialog.cpp index f90b0fb5d..54e41d3df 100644 --- a/src/slic3r/GUI/AboutDialog.cpp +++ b/src/slic3r/GUI/AboutDialog.cpp @@ -124,7 +124,9 @@ void CopyrightsDialog::fill_entries() { "lib_fts" , "Forrest Smith" , "https://www.forrestthewoods.com/" }, { "fast_float" - , "Daniel Lemire, João Paulo Magalhaes and contributors", "https://github.com/fastfloat/fast_float" } + , "Daniel Lemire, João Paulo Magalhaes and contributors", "https://github.com/fastfloat/fast_float" }, + { "CuraEngine (Arachne, etc.)" + , "Ultimaker", "https://github.com/Ultimaker/CuraEngine" } }; } @@ -151,7 +153,7 @@ wxString CopyrightsDialog::get_html_text() , text_clr_str , header_str); - for (auto& entry : m_entries) { + for (const auto& entry : m_entries) { text += wxString::Format( "%s
" , entry.link, entry.lib_name);