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