mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-13 06:29:01 +08:00
Follow-up to c34b683970dcd7fd9640576833cff1d198af5b7f
Fix of Slic3r::GUI::format/format_wxstr() for wxString&&
This commit is contained in:
parent
c34b683970
commit
fef729b75a
@ -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() };
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user