mirror of
https://github.com/stenzek/duckstation.git
synced 2025-06-06 03:25:36 +00:00
Qt: Fix swapped parameter order in patch info
This commit is contained in:
parent
5e339c8975
commit
0ee3f235b6
@ -15,9 +15,8 @@
|
|||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
|
||||||
GamePatchDetailsWidget::GamePatchDetailsWidget(std::string name, const std::string& author,
|
GamePatchDetailsWidget::GamePatchDetailsWidget(std::string name, const std::string& author,
|
||||||
const std::string& description, bool enabled,
|
const std::string& description, bool disallowed_for_achievements,
|
||||||
bool disallowed_for_achievements, SettingsWindow* dialog,
|
bool enabled, SettingsWindow* dialog, QWidget* parent)
|
||||||
QWidget* parent)
|
|
||||||
: QWidget(parent), m_dialog(dialog), m_name(name)
|
: QWidget(parent), m_dialog(dialog), m_name(name)
|
||||||
{
|
{
|
||||||
m_ui.setupUi(this);
|
m_ui.setupUi(this);
|
||||||
|
@ -19,8 +19,8 @@ class GamePatchDetailsWidget : public QWidget
|
|||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
GamePatchDetailsWidget(std::string name, const std::string& author, const std::string& description, bool enabled,
|
GamePatchDetailsWidget(std::string name, const std::string& author, const std::string& description,
|
||||||
bool disallowed_for_achievements, SettingsWindow* dialog, QWidget* parent);
|
bool disallowed_for_achievements, bool enabled, SettingsWindow* dialog, QWidget* parent);
|
||||||
~GamePatchDetailsWidget();
|
~GamePatchDetailsWidget();
|
||||||
|
|
||||||
private Q_SLOTS:
|
private Q_SLOTS:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user