From 72ccefff5f2dd8e1af6c03d085c9763f0d3a2603 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Sun, 21 Apr 2019 04:10:46 -0700 Subject: [PATCH] UI: Rename UI files for consistency Changes comboBox-* and spinBox-* files to lowercase to be more consistent with the rest of the files in the UI directory. --- UI/CMakeLists.txt | 8 ++++---- UI/{comboBox-ignorewheel.cpp => combobox-ignorewheel.cpp} | 2 +- UI/{comboBox-ignorewheel.hpp => combobox-ignorewheel.hpp} | 0 UI/frontend-plugins/decklink-output-ui/CMakeLists.txt | 8 ++++---- UI/frontend-plugins/frontend-tools/CMakeLists.txt | 8 ++++---- UI/properties-view.cpp | 4 ++-- UI/{spinBox-ignorewheel.cpp => spinbox-ignorewheel.cpp} | 2 +- UI/{spinBox-ignorewheel.hpp => spinbox-ignorewheel.hpp} | 0 8 files changed, 16 insertions(+), 16 deletions(-) rename UI/{comboBox-ignorewheel.cpp => combobox-ignorewheel.cpp} (87%) rename UI/{comboBox-ignorewheel.hpp => combobox-ignorewheel.hpp} (100%) rename UI/{spinBox-ignorewheel.cpp => spinbox-ignorewheel.cpp} (87%) rename UI/{spinBox-ignorewheel.hpp => spinbox-ignorewheel.hpp} (100%) diff --git a/UI/CMakeLists.txt b/UI/CMakeLists.txt index 5d5712062..0711c69a4 100644 --- a/UI/CMakeLists.txt +++ b/UI/CMakeLists.txt @@ -233,8 +233,8 @@ set(obs_SOURCES menu-button.cpp double-slider.cpp slider-ignorewheel.cpp - comboBox-ignorewheel.cpp - spinBox-ignorewheel.cpp + combobox-ignorewheel.cpp + spinbox-ignorewheel.cpp volume-control.cpp adv-audio-control.cpp item-widget-helpers.cpp @@ -286,8 +286,8 @@ set(obs_HEADERS balance-slider.hpp double-slider.hpp slider-ignorewheel.hpp - comboBox-ignorewheel.hpp - spinBox-ignorewheel.hpp + combobox-ignorewheel.hpp + spinbox-ignorewheel.hpp focus-list.hpp menu-button.hpp mute-checkbox.hpp diff --git a/UI/comboBox-ignorewheel.cpp b/UI/combobox-ignorewheel.cpp similarity index 87% rename from UI/comboBox-ignorewheel.cpp rename to UI/combobox-ignorewheel.cpp index 704907a98..c7c24eb43 100644 --- a/UI/comboBox-ignorewheel.cpp +++ b/UI/combobox-ignorewheel.cpp @@ -1,4 +1,4 @@ -#include "comboBox-ignorewheel.hpp" +#include "combobox-ignorewheel.hpp" ComboBoxIgnoreScroll::ComboBoxIgnoreScroll(QWidget *parent) : QComboBox(parent) { diff --git a/UI/comboBox-ignorewheel.hpp b/UI/combobox-ignorewheel.hpp similarity index 100% rename from UI/comboBox-ignorewheel.hpp rename to UI/combobox-ignorewheel.hpp diff --git a/UI/frontend-plugins/decklink-output-ui/CMakeLists.txt b/UI/frontend-plugins/decklink-output-ui/CMakeLists.txt index 106c8cb68..da82a6b25 100644 --- a/UI/frontend-plugins/decklink-output-ui/CMakeLists.txt +++ b/UI/frontend-plugins/decklink-output-ui/CMakeLists.txt @@ -18,8 +18,8 @@ set(decklink-ouput-ui_HEADERS ../../vertical-scroll-area.hpp ../../double-slider.hpp ../../slider-ignorewheel.hpp - ../../comboBox-ignorewheel.hpp - ../../spinBox-ignorewheel.hpp + ../../combobox-ignorewheel.hpp + ../../spinbox-ignorewheel.hpp ./DecklinkOutputUI.h decklink-ui-main.h ) @@ -29,8 +29,8 @@ set(decklink-ouput-ui_SOURCES ../../vertical-scroll-area.cpp ../../double-slider.cpp ../../slider-ignorewheel.cpp - ../../comboBox-ignorewheel.cpp - ../../spinBox-ignorewheel.cpp + ../../combobox-ignorewheel.cpp + ../../spinbox-ignorewheel.cpp ./DecklinkOutputUI.cpp decklink-ui-main.cpp ) diff --git a/UI/frontend-plugins/frontend-tools/CMakeLists.txt b/UI/frontend-plugins/frontend-tools/CMakeLists.txt index a3d5d5013..d59548559 100644 --- a/UI/frontend-plugins/frontend-tools/CMakeLists.txt +++ b/UI/frontend-plugins/frontend-tools/CMakeLists.txt @@ -29,8 +29,8 @@ set(frontend-tools_HEADERS ../../vertical-scroll-area.hpp ../../double-slider.hpp ../../slider-ignorewheel.hpp - ../../comboBox-ignorewheel.hpp - ../../spinBox-ignorewheel.hpp + ../../combobox-ignorewheel.hpp + ../../spinbox-ignorewheel.hpp ) set(frontend-tools_SOURCES ${frontend-tools_SOURCES} @@ -42,8 +42,8 @@ set(frontend-tools_SOURCES ../../vertical-scroll-area.cpp ../../double-slider.cpp ../../slider-ignorewheel.cpp - ../../comboBox-ignorewheel.cpp - ../../spinBox-ignorewheel.cpp + ../../combobox-ignorewheel.cpp + ../../spinbox-ignorewheel.cpp ) set(frontend-tools_UI ${frontend-tools_UI} diff --git a/UI/properties-view.cpp b/UI/properties-view.cpp index 5a1f0b96f..b83670ef1 100644 --- a/UI/properties-view.cpp +++ b/UI/properties-view.cpp @@ -22,8 +22,8 @@ #include #include "double-slider.hpp" #include "slider-ignorewheel.hpp" -#include "spinBox-ignorewheel.hpp" -#include "comboBox-ignorewheel.hpp" +#include "spinbox-ignorewheel.hpp" +#include "combobox-ignorewheel.hpp" #include "qt-wrappers.hpp" #include "properties-view.hpp" #include "properties-view.moc.hpp" diff --git a/UI/spinBox-ignorewheel.cpp b/UI/spinbox-ignorewheel.cpp similarity index 87% rename from UI/spinBox-ignorewheel.cpp rename to UI/spinbox-ignorewheel.cpp index 4fd126faa..0452b9337 100644 --- a/UI/spinBox-ignorewheel.cpp +++ b/UI/spinbox-ignorewheel.cpp @@ -1,4 +1,4 @@ -#include "spinBox-ignorewheel.hpp" +#include "spinbox-ignorewheel.hpp" SpinBoxIgnoreScroll::SpinBoxIgnoreScroll(QWidget *parent) : QSpinBox(parent) { diff --git a/UI/spinBox-ignorewheel.hpp b/UI/spinbox-ignorewheel.hpp similarity index 100% rename from UI/spinBox-ignorewheel.hpp rename to UI/spinbox-ignorewheel.hpp