Cleanup includes

This commit is contained in:
WarmUpTill
2024-02-27 19:47:49 +01:00
committed by WarmUpTill
parent 341a58b8e4
commit a740a29798
13 changed files with 11 additions and 12 deletions

View File

@@ -4,7 +4,6 @@
#include "section.hpp"
#include "ui-helpers.hpp"
#include <obs.hpp>
#include <QApplication>
#include <QEvent>
#include <QLabel>

View File

@@ -11,7 +11,7 @@
#include <QFrame>
#include <QVBoxLayout>
#include <QTimer>
#include <obs.hpp>
#include <obs-data.h>
class QLabel;
@@ -116,8 +116,8 @@ private:
void ShowDropLine(DropLineState);
// The reason for using two separate frame widget each with their own
// stylesheet and changing their visibility vs. using a single frame
// The reason for using two separate frame widgets, each with their own
// stylesheet, and changing their visibility vs. using a single frame
// and changing the stylesheet at runtime is that the operation of
// adjusting the stylesheet is very expensive and can take multiple
// hundred milliseconds per widget.

View File

@@ -13,7 +13,7 @@
#include <memory>
#include <map>
#include <thread>
#include <obs-data.h>
#include <obs.hpp>
#include <obs-module-helper.hpp>
namespace advss {

View File

@@ -1,9 +1,9 @@
#include "curl-helper.hpp"
#include "log-helper.hpp"
#include <QDir>
#include <QFileInfo>
#include <curl/curl.h>
#include <obs.hpp>
namespace advss {

View File

@@ -2,7 +2,6 @@
#include "export-symbol-helper.hpp"
#include <deque>
#include <obs.hpp>
#include <QComboBox>
#include <QStringList>
#include <string>

View File

@@ -1,7 +1,7 @@
#pragma once
#include "filter-combo-box.hpp"
#include <obs.hpp>
#include <obs-data.h>
#include <mutex>
#include <optional>
#include <QEnterEvent>

View File

@@ -3,7 +3,6 @@
#include "obs-module-helper.hpp"
#include <obs-frontend-api.h>
#include <obs.hpp>
#include <QGraphicsColorizeEffect>
#include <QMainWindow>
#include <QPropertyAnimation>

View File

@@ -1,8 +1,6 @@
#pragma once
#include "variable.hpp"
#include <obs.hpp>
namespace advss {
template<typename T> class NumberVariable {

View File

@@ -2,7 +2,7 @@
#include "variable.hpp"
#include <string>
#include <obs.hpp>
#include <obs-data.h>
namespace advss {

View File

@@ -1,6 +1,7 @@
#include "macro-action-clipboard.hpp"
#include "curl-helper.hpp"
#include <obs.hpp>
#include <QApplication>
#include <QClipboard>
#include <QImage>

View File

@@ -2,6 +2,7 @@
#include "macro-action-edit.hpp"
#include "file-selection.hpp"
#include <obs.hpp>
#include <QDoubleSpinBox>
#include <QLabel>

View File

@@ -2,6 +2,7 @@
#include "macro-condition-edit.hpp"
#include "variable-spinbox.hpp"
#include <obs.hpp>
#include <QWidget>
#include <QComboBox>
#include <util/platform.h>

View File

@@ -1,4 +1,5 @@
#include "osc-helpers.hpp"
#include "log-helper.hpp"
#include "obs-module-helper.hpp"
#include "ui-helpers.hpp"