From 8f6386cdffa65c6e53510c749f36272878dc465c Mon Sep 17 00:00:00 2001 From: YuSanka Date: Thu, 23 Sep 2021 16:38:34 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20of=20#7000=20-=20Compilation=20error:=20a?= =?UTF-8?q?mbiguous=20overload=20for=20=E2=80=98operator+?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/slic3r/GUI/UnsavedChangesDialog.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/slic3r/GUI/UnsavedChangesDialog.cpp b/src/slic3r/GUI/UnsavedChangesDialog.cpp index 40cfa548a..ffa47ed63 100644 --- a/src/slic3r/GUI/UnsavedChangesDialog.cpp +++ b/src/slic3r/GUI/UnsavedChangesDialog.cpp @@ -1214,9 +1214,9 @@ void UnsavedChangesDialog::update(Preset::Type type, PresetCollection* dependent for (Tab* tab : wxGetApp().tabs_list) if (tab->supports_printer_technology(printer_technology) && tab->current_preset_is_dirty()) presets_cnt++; - m_action_line->SetLabel((header.IsEmpty() ? "" : header + "\n\n") + //_L("The following presets were modified:")); - + _L_PLURAL("The following preset was modified", - "The following presets were modified", presets_cnt)); + m_action_line->SetLabel((header.IsEmpty() ? "" : header + "\n\n") + + _L_PLURAL("The following preset was modified", + "The following presets were modified", presets_cnt)); } else { wxString action_msg;