summaryrefslogtreecommitdiffstats
path: root/src/core/frontend/applets/software_keyboard.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/frontend/applets/software_keyboard.cpp')
-rw-r--r--src/core/frontend/applets/software_keyboard.cpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/core/frontend/applets/software_keyboard.cpp b/src/core/frontend/applets/software_keyboard.cpp
index c1bacefef..41d81c293 100644
--- a/src/core/frontend/applets/software_keyboard.cpp
+++ b/src/core/frontend/applets/software_keyboard.cpp
@@ -3,16 +3,19 @@
// Refer to the license.txt file included.
#include "common/logging/backend.h"
-#include "common/string_util.h"
#include "core/frontend/applets/software_keyboard.h"
-namespace Frontend {
-bool DefaultSoftwareKeyboardApplet::GetText(Parameters parameters, std::u16string& text) {
+namespace Core::Frontend {
+SoftwareKeyboardApplet::~SoftwareKeyboardApplet() = default;
+
+bool DefaultSoftwareKeyboardApplet::GetText(SoftwareKeyboardParameters parameters,
+ std::u16string& text) const {
if (parameters.initial_text.empty())
- text = Common::UTF8ToUTF16("yuzu");
+ text = u"yuzu";
else
text = parameters.initial_text;
return true;
}
-} // namespace Frontend
+
+} // namespace Core::Frontend