Fix wxArrayString ctor, wstring concat, and wxList::Node for wx 3.3

- Plater: use Add() instead of wxArrayString(size_t, wxString) ctor
- Search: change sep from std::wstring to wxString for concatenation
- SendMultiMachinePage: replace wxList::Node* with compatibility_iterator
  (Node type removed in wx 3.3 with wxUSE_STD_CONTAINERS=ON)
This commit is contained in:
SoftFever
2026-03-25 11:33:50 +08:00
parent 7cbd9bfb3c
commit 1765d296a8
3 changed files with 7 additions and 11 deletions

View File

@@ -184,7 +184,7 @@ bool OptionsSearcher::search(const std::string &search, bool force /* = false*/,
found.clear();
bool full_list = search.empty();
std::wstring sep = L" : ";
wxString sep = L" : ";
auto get_label = [this, &sep](const Option &opt, bool marked = true) {
std::wstring out;