From 5cda3d4e8e7f34d20977bad4a95c59f71865dfd0 Mon Sep 17 00:00:00 2001 From: Sebastian Beckmann Date: Wed, 28 May 2025 18:24:39 +0200 Subject: [PATCH] shared/idian: Rename all-in-one include to Idian.hpp --- frontend/dialogs/OBSIdianPlayground.cpp | 2 +- shared/qt/idian/CMakeLists.txt | 2 +- .../qt/idian/include/Idian/{obs-widgets.hpp => Idian.hpp} | 6 ------ 3 files changed, 2 insertions(+), 8 deletions(-) rename shared/qt/idian/include/Idian/{obs-widgets.hpp => Idian.hpp} (81%) diff --git a/frontend/dialogs/OBSIdianPlayground.cpp b/frontend/dialogs/OBSIdianPlayground.cpp index d2e6b0bdc..8e6babbb3 100644 --- a/frontend/dialogs/OBSIdianPlayground.cpp +++ b/frontend/dialogs/OBSIdianPlayground.cpp @@ -17,7 +17,7 @@ #include "OBSIdianPlayground.hpp" -#include +#include #include diff --git a/shared/qt/idian/CMakeLists.txt b/shared/qt/idian/CMakeLists.txt index 7b8e888ce..9be31a03a 100644 --- a/shared/qt/idian/CMakeLists.txt +++ b/shared/qt/idian/CMakeLists.txt @@ -26,7 +26,7 @@ target_sources( OBSToggleSwitch.cpp OBSToggleSwitch.hpp ) -target_sources(idian PUBLIC include/Idian/obs-widgets.hpp) +target_sources(idian PUBLIC include/Idian/Idian.hpp) set_target_properties(idian PROPERTIES AUTOMOC ON FOLDER "frontend") diff --git a/shared/qt/idian/include/Idian/obs-widgets.hpp b/shared/qt/idian/include/Idian/Idian.hpp similarity index 81% rename from shared/qt/idian/include/Idian/obs-widgets.hpp rename to shared/qt/idian/include/Idian/Idian.hpp index a9aa034f0..fe42e37e9 100644 --- a/shared/qt/idian/include/Idian/obs-widgets.hpp +++ b/shared/qt/idian/include/Idian/Idian.hpp @@ -29,9 +29,3 @@ #include "../../OBSPropertiesList.hpp" #include "../../OBSSpinBox.hpp" #include "../../OBSToggleSwitch.hpp" - -/// Note: This file serves as an all-in-one include for custom OBS widgets. -/// It is not intended to define any widgets by itself. - -/// Note 2: These widgets are still heavily work in progress. They should not -/// yet be used outside of the demo and scene collection dialogues.