aboutsummaryrefslogtreecommitdiff
path: root/src/yuzu/applets/software_keyboard.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-05-29 00:52:47 -0400
committerLioncash <mathew1800@gmail.com>2019-05-29 00:56:45 -0400
commitcfc9d92b38bae6d9815ae06bbe5e2d800887f897 (patch)
tree0e29c639d312387b9ec6e32a22fa73d084e3b4f8 /src/yuzu/applets/software_keyboard.h
parent802dd3cc95aee9e7ba3a5005e291beb65612b52b (diff)
yuzu/software_keyboard: Remove unnecessary GetStatus() member function
Like with the profile selection dialog, we can just use the result of QDialog's exec() function to determine whether or not a dialog was accepted.
Diffstat (limited to 'src/yuzu/applets/software_keyboard.h')
-rw-r--r--src/yuzu/applets/software_keyboard.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/yuzu/applets/software_keyboard.h b/src/yuzu/applets/software_keyboard.h
index 78c5a042b8..44bcece752 100644
--- a/src/yuzu/applets/software_keyboard.h
+++ b/src/yuzu/applets/software_keyboard.h
@@ -36,10 +36,8 @@ public:
void reject() override;
std::u16string GetText() const;
- bool GetStatus() const;
private:
- bool ok = false;
std::u16string text;
QDialogButtonBox* buttons;