diff options
| author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-10-14 14:12:22 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-14 14:12:22 -0400 |
| commit | b02d662980a401057d2ff7c1522d47f9f6538d81 (patch) | |
| tree | 2717ff56b111eb1adfcb712e14ad69f25ab76b68 /src/yuzu/compatdb.h | |
| parent | 894b483a0d619c3ceaa79fa0ff4cef6d37301f9c (diff) | |
| parent | b6894bfc5b86c2fae0b401f2cfc294a08994781d (diff) | |
Merge pull request #6774 from lat9nq/remove-global-yuzu
yuzu qt: Remove global system instances
Diffstat (limited to 'src/yuzu/compatdb.h')
| -rw-r--r-- | src/yuzu/compatdb.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/yuzu/compatdb.h b/src/yuzu/compatdb.h index 5381f67f7..e2b2522bd 100644 --- a/src/yuzu/compatdb.h +++ b/src/yuzu/compatdb.h @@ -7,6 +7,7 @@ #include <memory> #include <QFutureWatcher> #include <QWizard> +#include "core/telemetry_session.h" namespace Ui { class CompatDB; @@ -16,7 +17,7 @@ class CompatDB : public QWizard { Q_OBJECT public: - explicit CompatDB(QWidget* parent = nullptr); + explicit CompatDB(Core::TelemetrySession& telemetry_session_, QWidget* parent = nullptr); ~CompatDB(); private: @@ -27,4 +28,6 @@ private: void Submit(); void OnTestcaseSubmitted(); void EnableNext(); + + Core::TelemetrySession& telemetry_session; }; |
