summaryrefslogtreecommitdiff
path: root/fluid/nodes
diff options
context:
space:
mode:
Diffstat (limited to 'fluid/nodes')
-rw-r--r--fluid/nodes/Node.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fluid/nodes/Node.h b/fluid/nodes/Node.h
index 64d720297..a5882233a 100644
--- a/fluid/nodes/Node.h
+++ b/fluid/nodes/Node.h
@@ -240,8 +240,8 @@ public:
virtual Node* click_test(int,int) { return nullptr; }
- virtual void add_child(Node*, Node* beforethis) { }
- virtual void move_child(Node*, Node* beforethis) { }
+ virtual void add_child(Node *, Node *beforethis) { (void)beforethis; }
+ virtual void move_child(Node *, Node *beforethis) { (void)beforethis; }
virtual void remove_child(Node*) { }
/** Give widgets a chance to arrange their children after all children were added.