diff options
Diffstat (limited to 'scene/gui/panel_container.h')
-rw-r--r-- | scene/gui/panel_container.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scene/gui/panel_container.h b/scene/gui/panel_container.h index 5623c3484b..92743f2c47 100644 --- a/scene/gui/panel_container.h +++ b/scene/gui/panel_container.h @@ -34,14 +34,13 @@ #include "scene/gui/container.h" class PanelContainer : public Container { - GDCLASS(PanelContainer, Container); protected: void _notification(int p_what); public: - virtual Size2 get_minimum_size() const; + virtual Size2 get_minimum_size() const override; PanelContainer(); }; |