obs-studio/frontend/components/EditWidget.hpp
cg2121 345fe56b6e frontend: Make sure all QObject subclasses have Q_OBJECT macro
Went through and found all QObject subclasses that didn't have
a Q_OBJECT macro.
2025-05-05 13:10:39 -04:00

16 lines
274 B
C++

#pragma once
#include <QLineEdit>
#include <QModelIndex>
class QPersistentModelIndex;
class EditWidget : public QLineEdit {
Q_OBJECT
public:
inline EditWidget(QWidget *parent, QModelIndex index_) : QLineEdit(parent), index(index_) {}
QPersistentModelIndex index;
};