Fix C5204 warnings by adding default virtual destructors

This commit is contained in:
Andrei Kortunov 2020-03-26 12:07:32 +04:00
parent 4c5d2feee8
commit 2e7712a390
15 changed files with 41 additions and 5 deletions

View file

@ -33,6 +33,8 @@ namespace Gui
virtual MyGUI::IntSize getRequestedSize() = 0;
virtual ~AutoSizedWidget() = default;
protected:
void notifySizeChange(MyGUI::Widget* w);
@ -94,6 +96,8 @@ namespace Gui
public:
Box();
virtual ~Box() = default;
void notifyChildrenSizeChanged();
protected: