Merge pull request #5309 from lioncash/dtor

applets: Make destructors virtual where applicable
This commit is contained in:
Pengfei Zhu
2020-05-02 08:02:14 +08:00
committed by GitHub
2 changed files with 3 additions and 0 deletions

View File

@@ -29,6 +29,7 @@ struct MiiSelectorData {
class MiiSelector {
public:
virtual ~MiiSelector() = default;
virtual void Setup(const MiiSelectorConfig& config) {
this->config = MiiSelectorConfig(config);
}

View File

@@ -82,6 +82,8 @@ enum class ValidationError {
class SoftwareKeyboard {
public:
virtual ~SoftwareKeyboard() = default;
/**
* Executes the software keyboard, configured with the given parameters.
*/