mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 23:55:45 +00:00
applets: Resolve variable shadowing
This commit is contained in:
parent
fe9823a520
commit
6efd390668
10 changed files with 19 additions and 19 deletions
|
@ -135,8 +135,8 @@ void QtSoftwareKeyboard::RequestText(std::function<void(std::optional<std::u16st
|
|||
}
|
||||
|
||||
void QtSoftwareKeyboard::SendTextCheckDialog(std::u16string error_message,
|
||||
std::function<void()> finished_check) const {
|
||||
this->finished_check = std::move(finished_check);
|
||||
std::function<void()> finished_check_) const {
|
||||
finished_check = std::move(finished_check_);
|
||||
emit MainWindowTextCheckDialog(error_message);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue