diff options
author | Lioncash <mathew1800@gmail.com> | 2018-11-20 17:29:19 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-11-20 17:29:22 +0100 |
commit | fe2609cb77692bf66783e364db920cbfe1bff078 (patch) | |
tree | 7c9fd4987f66437032463ef4eab7dd83be40e023 | |
parent | Merge pull request #1667 from DarkLordZach/swkbd (diff) | |
download | yuzu-fe2609cb77692bf66783e364db920cbfe1bff078.tar yuzu-fe2609cb77692bf66783e364db920cbfe1bff078.tar.gz yuzu-fe2609cb77692bf66783e364db920cbfe1bff078.tar.bz2 yuzu-fe2609cb77692bf66783e364db920cbfe1bff078.tar.lz yuzu-fe2609cb77692bf66783e364db920cbfe1bff078.tar.xz yuzu-fe2609cb77692bf66783e364db920cbfe1bff078.tar.zst yuzu-fe2609cb77692bf66783e364db920cbfe1bff078.zip |
-rw-r--r-- | src/yuzu/applets/software_keyboard.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/yuzu/applets/software_keyboard.h b/src/yuzu/applets/software_keyboard.h index 73f56714f..db3fbae1d 100644 --- a/src/yuzu/applets/software_keyboard.h +++ b/src/yuzu/applets/software_keyboard.h @@ -70,11 +70,10 @@ signals: void MainWindowGetText(Core::Frontend::SoftwareKeyboardParameters parameters) const; void MainWindowTextCheckDialog(std::u16string error_message) const; -public slots: +private: void MainWindowFinishedText(std::optional<std::u16string> text); void MainWindowFinishedCheckDialog(); -private: mutable std::function<void(std::optional<std::u16string>)> text_output; mutable std::function<void()> finished_check; }; |