Lots of fixes and added more dialogs

This commit is contained in:
2022-01-11 02:35:26 +01:00
parent b8c62a923e
commit 7fdcd5386d
76 changed files with 2196 additions and 196 deletions
+19
View File
@@ -0,0 +1,19 @@
#include "objectactionsmodel.h"
ObjectActionsModel::ObjectActionsModel(QObject *parent) :
QAbstractListModel{parent}
{
}
int ObjectActionsModel::rowCount(const QModelIndex &parent) const
{
Q_UNUSED(parent)
return 0;
}
QVariant ObjectActionsModel::data(const QModelIndex &index, int role) const
{
Q_UNUSED(index)
Q_UNUSED(role)
return {};
}