aboutsummaryrefslogtreecommitdiff
path: root/src/yuzu/applets/profile_select.cpp
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2020-12-05 08:37:13 -0500
committerMorph <39850852+Morph1984@users.noreply.github.com>2020-12-05 08:37:13 -0500
commitf6d4a289d53516789ceb5f90f086ffe8b2822115 (patch)
tree4d2bc21537da98af842e3a102fd0e08439ad1cf9 /src/yuzu/applets/profile_select.cpp
parentf2f346e1104106eb9323f0e141e0e67312c29849 (diff)
applets: Resolve variable shadowing
Diffstat (limited to 'src/yuzu/applets/profile_select.cpp')
-rw-r--r--src/yuzu/applets/profile_select.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/applets/profile_select.cpp b/src/yuzu/applets/profile_select.cpp
index c9a2f8601..4bf2bfd40 100644
--- a/src/yuzu/applets/profile_select.cpp
+++ b/src/yuzu/applets/profile_select.cpp
@@ -150,8 +150,8 @@ QtProfileSelector::QtProfileSelector(GMainWindow& parent) {
QtProfileSelector::~QtProfileSelector() = default;
void QtProfileSelector::SelectProfile(
- std::function<void(std::optional<Common::UUID>)> callback) const {
- this->callback = std::move(callback);
+ std::function<void(std::optional<Common::UUID>)> callback_) const {
+ callback = std::move(callback_);
emit MainWindowSelectProfile();
}