fix dtor not virtual
This commit is contained in:
parent
a15e5e823d
commit
30fcb71332
|
|
@ -25,7 +25,7 @@ namespace Nz
|
||||||
EditorAction(const Properties& properties)
|
EditorAction(const Properties& properties)
|
||||||
: m_properties(std::make_shared<Properties>(properties))
|
: m_properties(std::make_shared<Properties>(properties))
|
||||||
{}
|
{}
|
||||||
~EditorAction() = default;
|
virtual ~EditorAction() = default;
|
||||||
|
|
||||||
EditorAction(const EditorAction&) = delete;
|
EditorAction(const EditorAction&) = delete;
|
||||||
EditorAction& operator=(const EditorAction&) = delete;
|
EditorAction& operator=(const EditorAction&) = delete;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue