summaryrefslogtreecommitdiffstats
path: root/src/core/frontend/applets/software_keyboard.h
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-11-08 19:05:50 +0100
committerMorph <39850852+Morph1984@users.noreply.github.com>2021-11-08 19:05:50 +0100
commit1af499c15b35ee0cd7a90262d91feb874bed55db (patch)
tree71f1af22ca33f8c7c51706c2fc72c8f2f89744b1 /src/core/frontend/applets/software_keyboard.h
parentservice/pctl: Stub EndFreeCommunication (diff)
downloadyuzu-1af499c15b35ee0cd7a90262d91feb874bed55db.tar
yuzu-1af499c15b35ee0cd7a90262d91feb874bed55db.tar.gz
yuzu-1af499c15b35ee0cd7a90262d91feb874bed55db.tar.bz2
yuzu-1af499c15b35ee0cd7a90262d91feb874bed55db.tar.lz
yuzu-1af499c15b35ee0cd7a90262d91feb874bed55db.tar.xz
yuzu-1af499c15b35ee0cd7a90262d91feb874bed55db.tar.zst
yuzu-1af499c15b35ee0cd7a90262d91feb874bed55db.zip
Diffstat (limited to 'src/core/frontend/applets/software_keyboard.h')
-rw-r--r--src/core/frontend/applets/software_keyboard.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/frontend/applets/software_keyboard.h b/src/core/frontend/applets/software_keyboard.h
index 29109306b..490c55cc2 100644
--- a/src/core/frontend/applets/software_keyboard.h
+++ b/src/core/frontend/applets/software_keyboard.h
@@ -57,7 +57,7 @@ public:
virtual void InitializeKeyboard(
bool is_inline, KeyboardInitializeParameters initialize_parameters,
- std::function<void(Service::AM::Applets::SwkbdResult, std::u16string)>
+ std::function<void(Service::AM::Applets::SwkbdResult, std::u16string, bool)>
submit_normal_callback_,
std::function<void(Service::AM::Applets::SwkbdReplyType, std::u16string, s32)>
submit_inline_callback_) = 0;
@@ -82,7 +82,7 @@ public:
void InitializeKeyboard(
bool is_inline, KeyboardInitializeParameters initialize_parameters,
- std::function<void(Service::AM::Applets::SwkbdResult, std::u16string)>
+ std::function<void(Service::AM::Applets::SwkbdResult, std::u16string, bool)>
submit_normal_callback_,
std::function<void(Service::AM::Applets::SwkbdReplyType, std::u16string, s32)>
submit_inline_callback_) override;
@@ -106,7 +106,7 @@ private:
KeyboardInitializeParameters parameters;
- mutable std::function<void(Service::AM::Applets::SwkbdResult, std::u16string)>
+ mutable std::function<void(Service::AM::Applets::SwkbdResult, std::u16string, bool)>
submit_normal_callback;
mutable std::function<void(Service::AM::Applets::SwkbdReplyType, std::u16string, s32)>
submit_inline_callback;