FIX: Fix missing wxString declaration

In file included from /run/build/BambuStudio/src/slic3r/GUI/DeviceCore/DevFirmware.cpp:1:
src/slic3r/GUI/DeviceCore/DevFirmware.h:33:5: error: ‘wxString’ does not name a type
   33 |     wxString    product_name;
      |     ^~~~~~~~
src/slic3r/GUI/DeviceCore/DevFilaBlackList.h:10:230: error: ‘wxString’ has not been declared
   10 |     static void check_filaments_in_blacklist(std::string model_id, std::string tag_vendor, std::string tag_type, const std::string& filament_id, int ams_id, int slot_id, std::string tag_name, bool& in_blacklist, std::string& ac, wxString& info);
      |                                                                                                                                                                                                                                      ^~~~~~~~

(cherry picked from commit 8092454b7560150c03bcd6c27c996b33dd52758f)
This commit is contained in:
Bastien Nocera 2025-08-12 21:06:05 +02:00 committed by Noisyfox
parent 4394527a5c
commit a8f2e17edd
2 changed files with 2 additions and 0 deletions

View file

@ -1,4 +1,5 @@
#pragma once
#include <wx/string.h>
#include "slic3r/Utils/json_diff.hpp"
namespace Slic3r

View file

@ -1,5 +1,6 @@
#pragma once
#include <nlohmann/json.hpp>
#include <wx/string.h>
#include "slic3r/Utils/json_diff.hpp"
namespace Slic3r {