diff options
| author | 2018-11-20 11:29:19 -0500 | |
|---|---|---|
| committer | 2018-11-20 11:29:22 -0500 | |
| commit | fe2609cb77692bf66783e364db920cbfe1bff078 (patch) | |
| tree | 7c9fd4987f66437032463ef4eab7dd83be40e023 /src | |
| parent | Merge pull request #1667 from DarkLordZach/swkbd (diff) | |
| download | yuzu-fe2609cb77692bf66783e364db920cbfe1bff078.tar.gz yuzu-fe2609cb77692bf66783e364db920cbfe1bff078.tar.xz yuzu-fe2609cb77692bf66783e364db920cbfe1bff078.zip | |
yuzu/applets/software_keyboard: Make slots private functions
These aren't required to be public.
Diffstat (limited to 'src')
| -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: | |||
| 70 | void MainWindowGetText(Core::Frontend::SoftwareKeyboardParameters parameters) const; | 70 | void MainWindowGetText(Core::Frontend::SoftwareKeyboardParameters parameters) const; |
| 71 | void MainWindowTextCheckDialog(std::u16string error_message) const; | 71 | void MainWindowTextCheckDialog(std::u16string error_message) const; |
| 72 | 72 | ||
| 73 | public slots: | 73 | private: |
| 74 | void MainWindowFinishedText(std::optional<std::u16string> text); | 74 | void MainWindowFinishedText(std::optional<std::u16string> text); |
| 75 | void MainWindowFinishedCheckDialog(); | 75 | void MainWindowFinishedCheckDialog(); |
| 76 | 76 | ||
| 77 | private: | ||
| 78 | mutable std::function<void(std::optional<std::u16string>)> text_output; | 77 | mutable std::function<void(std::optional<std::u16string>)> text_output; |
| 79 | mutable std::function<void()> finished_check; | 78 | mutable std::function<void()> finished_check; |
| 80 | }; | 79 | }; |