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/core/frontend/applets/profile_select.h | |
| parent | d94dcaefa020dcfc89d655dcf5aa8dad998e0bf2 (diff) | |
profile: Migrate to the new UUID implementation
Diffstat (limited to 'src/core/frontend/applets/profile_select.h')
| -rw-r--r-- | src/core/frontend/applets/profile_select.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/core/frontend/applets/profile_select.h b/src/core/frontend/applets/profile_select.h index 3506b9885..5b2346e72 100644 --- a/src/core/frontend/applets/profile_select.h +++ b/src/core/frontend/applets/profile_select.h @@ -6,7 +6,7 @@ #include <functional> #include <optional> -#include "common/uuid.h" +#include "common/new_uuid.h" namespace Core::Frontend { @@ -14,12 +14,13 @@ class ProfileSelectApplet { public: virtual ~ProfileSelectApplet(); - virtual void SelectProfile(std::function<void(std::optional<Common::UUID>)> callback) const = 0; + virtual void SelectProfile( + std::function<void(std::optional<Common::NewUUID>)> callback) const = 0; }; class DefaultProfileSelectApplet final : public ProfileSelectApplet { public: - void SelectProfile(std::function<void(std::optional<Common::UUID>)> callback) const override; + void SelectProfile(std::function<void(std::optional<Common::NewUUID>)> callback) const override; }; } // namespace Core::Frontend |
