From 13f5c777cc85288cbb1dc7de0706b29612f3226f Mon Sep 17 00:00:00 2001 From: Andrew <159703254+andrewsoonqn@users.noreply.github.com> Date: Thu, 16 Jul 2026 16:09:30 +0800 Subject: [PATCH] Rename SpeedDialDialog files to SpeedDialPopup --- src/slic3r/CMakeLists.txt | 4 ++-- src/slic3r/GUI/GUI_App.cpp | 2 +- src/slic3r/GUI/{SpeedDialDialog.cpp => SpeedDialPopup.cpp} | 2 +- src/slic3r/GUI/{SpeedDialDialog.hpp => SpeedDialPopup.hpp} | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) rename src/slic3r/GUI/{SpeedDialDialog.cpp => SpeedDialPopup.cpp} (99%) rename src/slic3r/GUI/{SpeedDialDialog.hpp => SpeedDialPopup.hpp} (56%) diff --git a/src/slic3r/CMakeLists.txt b/src/slic3r/CMakeLists.txt index d9b8e00265..1aab7334f1 100644 --- a/src/slic3r/CMakeLists.txt +++ b/src/slic3r/CMakeLists.txt @@ -116,8 +116,8 @@ set(SLIC3R_GUI_SOURCES GUI/PluginPickerDialog.hpp GUI/PluginsDialog.cpp GUI/PluginsDialog.hpp - GUI/SpeedDialDialog.cpp - GUI/SpeedDialDialog.hpp + GUI/SpeedDialPopup.cpp + GUI/SpeedDialPopup.hpp GUI/ActionRegistry.cpp GUI/ActionRegistry.hpp GUI/ProcessRunner.cpp diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index 7dc10ed98a..f275bda7c6 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -141,7 +141,7 @@ #include "slic3r/Utils/bambu_networking.hpp" #include "PluginsDialog.hpp" -#include "SpeedDialDialog.hpp" +#include "SpeedDialPopup.hpp" #include "TerminalDialog.hpp" //#ifdef WIN32 diff --git a/src/slic3r/GUI/SpeedDialDialog.cpp b/src/slic3r/GUI/SpeedDialPopup.cpp similarity index 99% rename from src/slic3r/GUI/SpeedDialDialog.cpp rename to src/slic3r/GUI/SpeedDialPopup.cpp index 7d06c1d26d..47d4b208c9 100644 --- a/src/slic3r/GUI/SpeedDialDialog.cpp +++ b/src/slic3r/GUI/SpeedDialPopup.cpp @@ -1,4 +1,4 @@ -#include "SpeedDialDialog.hpp" +#include "SpeedDialPopup.hpp" #include "ActionRegistry.hpp" #include "GUI.hpp" diff --git a/src/slic3r/GUI/SpeedDialDialog.hpp b/src/slic3r/GUI/SpeedDialPopup.hpp similarity index 56% rename from src/slic3r/GUI/SpeedDialDialog.hpp rename to src/slic3r/GUI/SpeedDialPopup.hpp index 1f75d8a10f..2af9f48d6b 100644 --- a/src/slic3r/GUI/SpeedDialDialog.hpp +++ b/src/slic3r/GUI/SpeedDialPopup.hpp @@ -1,5 +1,5 @@ -#ifndef slic3r_GUI_SpeedDialDialog_hpp_ -#define slic3r_GUI_SpeedDialDialog_hpp_ +#ifndef slic3r_GUI_SpeedDialPopup_hpp_ +#define slic3r_GUI_SpeedDialPopup_hpp_ #include