Qt: Fix build

This commit is contained in:
Vicki Pfau 2025-04-27 22:12:50 -07:00
parent 11ebe11c8e
commit de3ab3889d
2 changed files with 3 additions and 1 deletions

View File

@ -6,6 +6,7 @@
#include "scripting/AutorunScriptModel.h" #include "scripting/AutorunScriptModel.h"
#include "ConfigController.h" #include "ConfigController.h"
#include "LogController.h"
using namespace QGBA; using namespace QGBA;
@ -94,7 +95,7 @@ bool AutorunScriptModel::moveRows(const QModelIndex& sourceParent, int sourceRow
} }
if (count > 1) { if (count > 1) {
qWarning() << tr("Moving more than one row at once is not yet supported"); LOG(QT, WARN) << tr("Moving more than one row at once is not yet supported");
return false; return false;
} }

View File

@ -6,6 +6,7 @@
#pragma once #pragma once
#include <QAbstractListModel> #include <QAbstractListModel>
#include <QDataStream>
namespace QGBA { namespace QGBA {