From c0485ec817aafcbc427a41db1ec47695f1fc53ab Mon Sep 17 00:00:00 2001 From: remi durand Date: Fri, 4 Jun 2021 19:47:15 +0200 Subject: [PATCH] w(x)string compile conversion shenanigan supermerill/SuperSlicer#1243 --- src/slic3r/GUI/Preferences.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Preferences.cpp b/src/slic3r/GUI/Preferences.cpp index c1d42e492..2da6c1c08 100644 --- a/src/slic3r/GUI/Preferences.cpp +++ b/src/slic3r/GUI/Preferences.cpp @@ -654,7 +654,7 @@ void PreferencesDialog::create_settings_mode_widget() m_values["new_settings_layout_mode"] = boost::any_cast(selection == 2) ? "1" : "0"; m_values["dlg_settings_layout_mode"] = boost::any_cast(selection == 3) ? "1" : "0"; }); - std::wstring unstable_warning = _L("!! Can be unstable in some os distribution !!"); + wxString unstable_warning = _L("!! Can be unstable in some os distribution !!"); m_layout_mode_box->SetToolTip(_L("Choose how the windows are selectable and displayed:") + "\n* " + _L(" Tab layout: all windows are in the application, all are selectable via a tab.") #ifndef WIN32