From e749c37030ccb53d6abef98a74b0f309e3bf8121 Mon Sep 17 00:00:00 2001 From: viewit Date: Thu, 11 Jun 2026 15:26:47 +0200 Subject: [PATCH] fix(stable): wx 3.3.2 String-Konkatenation in SyncAmsInfoDialog (L-Literal) --- src/slic3r/GUI/SyncAmsInfoDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/SyncAmsInfoDialog.cpp b/src/slic3r/GUI/SyncAmsInfoDialog.cpp index 1e6f2256fe4..bf535b0caea 100644 --- a/src/slic3r/GUI/SyncAmsInfoDialog.cpp +++ b/src/slic3r/GUI/SyncAmsInfoDialog.cpp @@ -1079,7 +1079,7 @@ void SyncAmsInfoDialog::check_empty_project() if (!temp_plate->get_objects_on_this_plate().empty()) { if (m_is_empty_project) { m_is_empty_project = false; } if (i < 9) { - m_plate_number_choices_str.Add("0" + std::to_wstring(i + 1)); + m_plate_number_choices_str.Add(L"0" + std::to_wstring(i + 1)); } else if (i == 9) { m_plate_number_choices_str.Add("10");