summaryrefslogtreecommitdiff
path: root/plugingui/layout.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2015-10-03 14:39:19 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2015-10-03 14:39:19 +0200
commit13226c21a99d70dacd26aee69f3982ee72ff431a (patch)
tree985f7ff3726e438619bd87d5fe68197292d307e3 /plugingui/layout.h
parent21bb5bd2bd4243dc83a08d6e0329b5de2f96b1fe (diff)
Add missing overrides.
Diffstat (limited to 'plugingui/layout.h')
-rw-r--r--plugingui/layout.h9
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;