diff options
| author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-02-05 12:29:09 -0500 |
|---|---|---|
| committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-02-05 13:56:21 -0500 |
| commit | dfe11d72e3eb14dee718b7fa67a673514d199f20 (patch) | |
| tree | f21885d513c2df4bb409e17016e0996815e37569 /src/yuzu/applets/qt_profile_select.h | |
| parent | d94dcaefa020dcfc89d655dcf5aa8dad998e0bf2 (diff) | |
profile: Migrate to the new UUID implementation
Diffstat (limited to 'src/yuzu/applets/qt_profile_select.h')
| -rw-r--r-- | src/yuzu/applets/qt_profile_select.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/yuzu/applets/qt_profile_select.h b/src/yuzu/applets/qt_profile_select.h index 56496ed31..2522b6450 100644 --- a/src/yuzu/applets/qt_profile_select.h +++ b/src/yuzu/applets/qt_profile_select.h @@ -66,13 +66,14 @@ public: explicit QtProfileSelector(GMainWindow& parent); ~QtProfileSelector() override; - void SelectProfile(std::function<void(std::optional<Common::UUID>)> callback_) const override; + void SelectProfile( + std::function<void(std::optional<Common::NewUUID>)> callback_) const override; signals: void MainWindowSelectProfile() const; private: - void MainWindowFinishedSelection(std::optional<Common::UUID> uuid); + void MainWindowFinishedSelection(std::optional<Common::NewUUID> uuid); - mutable std::function<void(std::optional<Common::UUID>)> callback; + mutable std::function<void(std::optional<Common::NewUUID>)> callback; }; |
