Make ui::single_container::child const
This commit is contained in:
parent
62cfba7711
commit
a56cdcfc73
1 changed files with 1 additions and 1 deletions
|
|
@ -11,7 +11,7 @@ namespace psemek::ui
|
||||||
children_range children() const override { return children_; }
|
children_range children() const override { return children_; }
|
||||||
|
|
||||||
virtual std::shared_ptr<element> set_child(std::shared_ptr<element> c);
|
virtual std::shared_ptr<element> set_child(std::shared_ptr<element> c);
|
||||||
virtual std::shared_ptr<element> child() { return child_; }
|
virtual std::shared_ptr<element> child() const { return child_; }
|
||||||
|
|
||||||
~single_container() override;
|
~single_container() override;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue