1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-11 08:04:25 +00:00
Fix of Slic3r::GUI::format/format_wxstr() for wxString&&
This commit is contained in:
Vojtech Bubnik
2020-12-14 12:23:29 +01:00
parent c34b683970
commit fef729b75a
+3
View File
@@ -50,6 +50,9 @@ namespace internal {
inline const utf8_buffer cook(wxString &arg) {
return utf8_buffer { arg.ToUTF8() };
}
inline const utf8_buffer cook(wxString &&arg) {
return utf8_buffer{ arg.ToUTF8() };
}
}
}