diff options
Diffstat (limited to 'plugingui/layout.h')
-rw-r--r-- | plugingui/layout.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/plugingui/layout.h b/plugingui/layout.h index a81f004..9814f7e 100644 --- a/plugingui/layout.h +++ b/plugingui/layout.h @@ -78,7 +78,8 @@ public: //! \brief Set to false to only move the items, not scale them. void setResizeChildren(bool resize_children); - virtual void layout() = 0; + // From Layout: + virtual void layout() override = 0; protected: bool resize_children; @@ -97,7 +98,8 @@ public: void setHAlignment(alignment_t alignment); - virtual void layout(); + // From BoxLayout: + virtual void layout() override; protected: alignment_t align; @@ -116,7 +118,8 @@ public: void setVAlignment(alignment_t alignment); - virtual void layout(); + // From BoxLayout: + virtual void layout() override; protected: alignment_t align; |