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);