summaryrefslogtreecommitdiffstats
path: root/src/core/frontend/applets/profile_select.cpp
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-03-29 15:11:34 +0200
committerGitHub <noreply@github.com>2023-03-29 15:11:34 +0200
commit8bdc51b620f0778f53d76ad9368da97a9213d631 (patch)
tree2a71c944643cda0ab019c22d1d46d58552f002ff /src/core/frontend/applets/profile_select.cpp
parentMerge pull request #10003 from german77/disconnect (diff)
parentqt: implement RequestExit for applets (diff)
downloadyuzu-8bdc51b620f0778f53d76ad9368da97a9213d631.tar
yuzu-8bdc51b620f0778f53d76ad9368da97a9213d631.tar.gz
yuzu-8bdc51b620f0778f53d76ad9368da97a9213d631.tar.bz2
yuzu-8bdc51b620f0778f53d76ad9368da97a9213d631.tar.lz
yuzu-8bdc51b620f0778f53d76ad9368da97a9213d631.tar.xz
yuzu-8bdc51b620f0778f53d76ad9368da97a9213d631.tar.zst
yuzu-8bdc51b620f0778f53d76ad9368da97a9213d631.zip
Diffstat (limited to '')
-rw-r--r--src/core/frontend/applets/profile_select.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/frontend/applets/profile_select.cpp b/src/core/frontend/applets/profile_select.cpp
index da4cfbf87..910d20c0d 100644
--- a/src/core/frontend/applets/profile_select.cpp
+++ b/src/core/frontend/applets/profile_select.cpp
@@ -9,6 +9,8 @@ namespace Core::Frontend {
ProfileSelectApplet::~ProfileSelectApplet() = default;
+void DefaultProfileSelectApplet::Close() const {}
+
void DefaultProfileSelectApplet::SelectProfile(SelectProfileCallback callback) const {
Service::Account::ProfileManager manager;
callback(manager.GetUser(Settings::values.current_user.GetValue()).value_or(Common::UUID{}));