diff options
author | Lioncash <mathew1800@gmail.com> | 2018-11-20 11:29:19 -0500 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-11-20 11:29:22 -0500 |
commit | fe2609cb77692bf66783e364db920cbfe1bff078 (patch) | |
tree | 7c9fd4987f66437032463ef4eab7dd83be40e023 /src/yuzu/applets/software_keyboard.h | |
parent | b6d2c64f4dcb01f1ffc99f9a057910ec65c6a401 (diff) |
yuzu/applets/software_keyboard: Make slots private functions
These aren't required to be public.
Diffstat (limited to 'src/yuzu/applets/software_keyboard.h')
-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 73f56714f9..db3fbae1d9 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; }; |