38 lines
1.7 KiB
Diff
38 lines
1.7 KiB
Diff
|
From f67a877d583eba5472003f0ea4df3f7420d70734 Mon Sep 17 00:00:00 2001
|
||
|
From: Gregor Riepl <onitake@gmail.com>
|
||
|
Date: Mon, 27 Nov 2023 13:01:55 +0100
|
||
|
Subject: [PATCH] Make initializers explicit to avoid ambiguous wxArrayString
|
||
|
overloads
|
||
|
|
||
|
---
|
||
|
src/slic3r/GUI/PhysicalPrinterDialog.cpp | 2 +-
|
||
|
src/slic3r/GUI/Plater.cpp | 2 +-
|
||
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/src/slic3r/GUI/PhysicalPrinterDialog.cpp b/src/slic3r/GUI/PhysicalPrinterDialog.cpp
|
||
|
index 2364c56247..bc2c918a60 100644
|
||
|
--- a/src/slic3r/GUI/PhysicalPrinterDialog.cpp
|
||
|
+++ b/src/slic3r/GUI/PhysicalPrinterDialog.cpp
|
||
|
@@ -467,7 +467,7 @@ void PhysicalPrinterDialog::build_printhost_settings(ConfigOptionsGroup* m_optgr
|
||
|
// Always fill in the "printhost_port" combo box from the config and select it.
|
||
|
{
|
||
|
Choice* choice = dynamic_cast<Choice*>(m_optgroup->get_field("printhost_port"));
|
||
|
- choice->set_values({ m_config->opt_string("printhost_port") });
|
||
|
+ choice->set_values(std::vector<std::string>({ m_config->opt_string("printhost_port") }));
|
||
|
choice->set_selection();
|
||
|
}
|
||
|
|
||
|
diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp
|
||
|
index c2b8e8694f..2f540bfe9d 100644
|
||
|
--- a/src/slic3r/GUI/Plater.cpp
|
||
|
+++ b/src/slic3r/GUI/Plater.cpp
|
||
|
@@ -5390,7 +5390,7 @@ void Plater::load_project(const wxString& filename)
|
||
|
|
||
|
p->reset();
|
||
|
|
||
|
- if (! load_files({ into_path(filename) }).empty()) {
|
||
|
+ if (! load_files(std::vector<boost::filesystem::path>({ into_path(filename) })).empty()) {
|
||
|
// At least one file was loaded.
|
||
|
p->set_project_filename(filename);
|
||
|
// Save the names of active presets and project specific config into ProjectDirtyStateManager.
|