mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-13 13:35:14 +01:00
applets/swkbd: Make destructor virtual
Prevents undefined behavior when destroying a derived class through a base class pointer.
This commit is contained in:
parent
aeb6a037ed
commit
89eeb64854
@ -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