Add Q_OBJECT macros

This commit is contained in:
onryo
2023-02-24 08:42:39 +01:00
parent 7dbe92e848
commit c50588713a
7 changed files with 29 additions and 8 deletions

View File

@@ -121,6 +121,8 @@ private:
// Model for list of configured recurring payments
class RecurringListViewModel : public QAbstractTableModel {
Q_OBJECT
public:
RecurringListViewModel(QTableView* parent);
~RecurringListViewModel() = default;
@@ -138,6 +140,8 @@ private:
// Model for history of payments
class RecurringPaymentsListViewModel : public QAbstractTableModel {
Q_OBJECT
public:
RecurringPaymentsListViewModel(QTableView* parent, RecurringPaymentInfo rpi);
~RecurringPaymentsListViewModel() = default;