mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-28 21:07:59 +03:00
Fix C5204 warnings by adding default virtual destructors
This commit is contained in:
parent
4c5d2feee8
commit
2e7712a390
15 changed files with 41 additions and 5 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue