From a856ebd5c2545c87605dc9f66dadabaa95722614 Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Tue, 25 Mar 2025 18:45:38 +0100 Subject: [PATCH] FIX: Fix missing wxDialog 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/WipeTowerDialog.cpp:4: /run/build/BambuStudio/src/slic3r/GUI/WipeTowerDialog.hpp:8:1: error: expected class-name before ‘{’ token 8 | { | ^ (cherry picked from commit 989d9f36b5a495e2d9b2e3c76d849a3b79f49799) --- src/slic3r/GUI/WipeTowerDialog.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/slic3r/GUI/WipeTowerDialog.hpp b/src/slic3r/GUI/WipeTowerDialog.hpp index 5cb82f8f2c..c6b1461937 100644 --- a/src/slic3r/GUI/WipeTowerDialog.hpp +++ b/src/slic3r/GUI/WipeTowerDialog.hpp @@ -1,6 +1,7 @@ #ifndef _WIPE_TOWER_DIALOG_H_ #define _WIPE_TOWER_DIALOG_H_ +#include #include #include "libslic3r/PrintConfig.hpp" #include "Widgets/SpinInput.hpp"