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.
This commit is contained in:
Lioncash 2019-05-29 00:52:47 -04:00
parent 5cf1aab5a8
commit a4d4b67322
3 changed files with 1 additions and 10 deletions

View file

@ -36,10 +36,8 @@ public:
void reject() override;
std::u16string GetText() const;
bool GetStatus() const;
private:
bool ok = false;
std::u16string text;
QDialogButtonBox* buttons;