mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-13 13:35:14 +01:00
Merge pull request #5309 from lioncash/dtor
applets: Make destructors virtual where applicable
This commit is contained in:
commit
6907568034
@ -29,6 +29,7 @@ struct MiiSelectorData {
|
|||||||
|
|
||||||
class MiiSelector {
|
class MiiSelector {
|
||||||
public:
|
public:
|
||||||
|
virtual ~MiiSelector() = default;
|
||||||
virtual void Setup(const MiiSelectorConfig& config) {
|
virtual void Setup(const MiiSelectorConfig& config) {
|
||||||
this->config = MiiSelectorConfig(config);
|
this->config = MiiSelectorConfig(config);
|
||||||
}
|
}
|
||||||
|
@ -82,6 +82,8 @@ enum class ValidationError {
|
|||||||
|
|
||||||
class SoftwareKeyboard {
|
class SoftwareKeyboard {
|
||||||
public:
|
public:
|
||||||
|
virtual ~SoftwareKeyboard() = default;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Executes the software keyboard, configured with the given parameters.
|
* Executes the software keyboard, configured with the given parameters.
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user