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

14 lines
235 B
C++

#pragma once
#include <QPersistentModelIndex>
#include <QPushButton>
class DelButton : public QPushButton {
Q_OBJECT
public:
inline DelButton(QModelIndex index_) : QPushButton(), index(index_) {}
QPersistentModelIndex index;
};