yuzu/applets/software_keyboard: Make slots private functions
These aren't required to be public.
This commit is contained in:
parent
b6d2c64f4d
commit
fe2609cb77
1 changed files with 1 additions and 2 deletions
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue