From 42c39dd232ffa650c51586ebd06b0787b7d97e43 Mon Sep 17 00:00:00 2001 From: David Kocik Date: Tue, 10 Dec 2024 15:21:21 +0100 Subject: [PATCH] typos --- src/slic3r/GUI/GUI_App.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index 6cc0bf8c20..18a360c37f 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -1327,12 +1327,10 @@ void GUI_App::remove_desktop_files_dialog() return; } // Inform about fails. - std::string fails_serialized; - std::string text = _"Failed to remove desktop files:"; + std::string text = "Failed to remove desktop files:"; text += "\n"; for (const boost::filesystem::path& entry : fails) { - text += GUI::format_wxstr("%1%\n",entry.string()); - fails_serialized += entry.string() + ";"; + text += GUI::format("%1%\n",entry.string()); } BOOST_LOG_TRIVIAL(error) << text; }