Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions frontend/components/DelButton.hpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
#pragma once

#include <QPersistentModelIndex>
#include <QPushButton>

class DelButton : public QPushButton {
Q_OBJECT

public:
inline DelButton(QModelIndex index_) : QPushButton(), index(index_) {}

Expand Down
2 changes: 2 additions & 0 deletions frontend/components/EditWidget.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
class QPersistentModelIndex;

class EditWidget : public QLineEdit {
Q_OBJECT

public:
inline EditWidget(QWidget *parent, QModelIndex index_) : QLineEdit(parent), index(index_) {}

Expand Down
1 change: 1 addition & 0 deletions frontend/utility/OBSProxyStyle.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include "OBSProxyStyle.hpp"

#include <QStyleOption>
#include "moc_OBSProxyStyle.cpp"

static inline uint qt_intensity(uint r, uint g, uint b)
{
Expand Down
2 changes: 2 additions & 0 deletions frontend/utility/OBSProxyStyle.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
#include <QProxyStyle>

class OBSProxyStyle : public QProxyStyle {
Q_OBJECT

public:
OBSProxyStyle() : QProxyStyle() {}

Expand Down
2 changes: 2 additions & 0 deletions frontend/utility/SettingsEventFilter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
#include <QObject>

class SettingsEventFilter : public QObject {
Q_OBJECT

QScopedPointer<OBSEventFilter> shortcutFilter;

public:
Expand Down
2 changes: 2 additions & 0 deletions frontend/utility/SurfaceEventFilter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
#include <QPlatformSurfaceEvent>

class SurfaceEventFilter : public QObject {
Q_OBJECT

OBSQTDisplay *display;

public:
Expand Down
1 change: 1 addition & 0 deletions frontend/widgets/ColorSelect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
******************************************************************************/

#include "ColorSelect.hpp"
#include "moc_ColorSelect.cpp"

ColorSelect::ColorSelect(QWidget *parent) : QWidget(parent), ui(new Ui::ColorSelect)
{
Expand Down
1 change: 1 addition & 0 deletions frontend/widgets/ColorSelect.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#include <QWidget>

class ColorSelect : public QWidget {
Q_OBJECT

public:
explicit ColorSelect(QWidget *parent = 0);
Expand Down
Loading