Lots of fixes and added more dialogs
This commit is contained in:
@@ -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 {};
|
||||
}
|
||||
Reference in New Issue
Block a user