mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-26 16:13:58 -06:00
fix: ambiguous call _check_convertible_to_path_source(const wxCStrData&) (#1597)
* fix: ambiguous call _check_convertible_to_path_source(const wxCStrData&) * change to ToStdWstring() per discussion --------- Co-authored-by: SoftFever <softfeverever@gmail.com>
This commit is contained in:
parent
2dfb4f1a68
commit
a329497f49
4 changed files with 10 additions and 10 deletions
|
@ -32,7 +32,7 @@ public:
|
|||
m_container = is_container;
|
||||
m_root = false;
|
||||
path = abs_path;
|
||||
fs::path path_obj(path.c_str());
|
||||
boost::filesystem::path path_obj(path.ToStdWstring());
|
||||
name = path_obj.filename().generic_wstring();
|
||||
|
||||
parent->Append(this);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue