From b890f0a39fcb48a1f1e1ee01f2aacf5d2fa35ad6 Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Tue, 25 Mar 2025 19:16:04 +0100 Subject: [PATCH] FIX: Fix missing wxTimerEvent declaration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In file included from /run/build/BambuStudio/src/slic3r/GUI/FilamentGroupPopup.cpp:1: /run/build/BambuStudio/src/slic3r/GUI/FilamentGroupPopup.hpp:33:18: error: ‘wxTimerEvent’ has not been declared 33 | void OnTimer(wxTimerEvent &event); | ^~~~~~~~~~~~ --- src/slic3r/GUI/FilamentGroupPopup.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/slic3r/GUI/FilamentGroupPopup.hpp b/src/slic3r/GUI/FilamentGroupPopup.hpp index a9c3e2185..e69f12c4f 100644 --- a/src/slic3r/GUI/FilamentGroupPopup.hpp +++ b/src/slic3r/GUI/FilamentGroupPopup.hpp @@ -1,6 +1,7 @@ #ifndef FILAMENT_GROUP_HOVER_HPP #define FILAMENT_GROUP_HOVER_HPP +#include #include "libslic3r/PrintConfig.hpp" #include "Widgets/PopupWindow.hpp" #include "Widgets/Label.hpp"