Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVojtech Kral <vojtech@kral.hk>2019-01-02 17:11:05 +0300
committerVojtech Kral <vojtech@kral.hk>2019-01-02 17:53:52 +0300
commit2db0906071495ea2ddedef0a30a076954fb49007 (patch)
tree08d93d1400002cecf817cc3f89dc7bbe0117ec40 /src/slic3r/GUI/PrintHostDialogs.cpp
parent760b1cd9bc9485c4995f25aa20f80f77ec6205e6 (diff)
Fix fs::path <-> wxString conversions
Diffstat (limited to 'src/slic3r/GUI/PrintHostDialogs.cpp')
-rw-r--r--src/slic3r/GUI/PrintHostDialogs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slic3r/GUI/PrintHostDialogs.cpp b/src/slic3r/GUI/PrintHostDialogs.cpp
index 8c0c0fc85..c2a94181e 100644
--- a/src/slic3r/GUI/PrintHostDialogs.cpp
+++ b/src/slic3r/GUI/PrintHostDialogs.cpp
@@ -49,7 +49,7 @@ PrintHostSendDialog::PrintHostSendDialog(const fs::path &path)
fs::path PrintHostSendDialog::filename() const
{
- return fs::path(txt_filename->GetValue().wx_str());
+ return into_path(txt_filename->GetValue());
}
bool PrintHostSendDialog::start_print() const