From a0bde11b2947d7aaf934d53c5c2888159157f7df Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Tue, 25 Mar 2025 18:05:23 +0100 Subject: [PATCH] FIX: Fix missing std::set declaration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit /run/build/BambuStudio/src/slic3r/GUI/Widgets/DropDown.cpp:281:10: error: ‘set’ is not a member of ‘std’ 281 | std::set groups; | ^~~ (cherry picked from commit 842152b65a3584a9a59950f52260b20951dd09a5) --- src/slic3r/GUI/Widgets/DropDown.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/slic3r/GUI/Widgets/DropDown.cpp b/src/slic3r/GUI/Widgets/DropDown.cpp index 407fbcc769..adddb0c621 100644 --- a/src/slic3r/GUI/Widgets/DropDown.cpp +++ b/src/slic3r/GUI/Widgets/DropDown.cpp @@ -9,6 +9,8 @@ #include #endif +#include + wxDEFINE_EVENT(EVT_DISMISS, wxCommandEvent); BEGIN_EVENT_TABLE(DropDown, PopupWindow)