diff options
author | bunnei <bunneidev@gmail.com> | 2020-12-08 17:43:59 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-08 17:43:59 -0800 |
commit | 05a703e15d37265523b7f804e066a80ba14f0096 (patch) | |
tree | 8c388c1e0e575c375bb61fcb355186b98745f805 /src/yuzu/applets/profile_select.cpp | |
parent | aeb100cffe2495d35f4d38d4212e7a101b0d600f (diff) | |
parent | f6d4a289d53516789ceb5f90f086ffe8b2822115 (diff) |
Merge pull request #5135 from Morph1984/applets-shadow
applets: Resolve variable shadowing
Diffstat (limited to 'src/yuzu/applets/profile_select.cpp')
-rw-r--r-- | src/yuzu/applets/profile_select.cpp | 4 |
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(); } |