diff --git a/src/ftxui/component/collapsible.cpp b/src/ftxui/component/collapsible.cpp index 1dec402..ad4b159 100644 --- a/src/ftxui/component/collapsible.cpp +++ b/src/ftxui/component/collapsible.cpp @@ -29,7 +29,7 @@ Component Collapsible(ConstStringRef label, Component child, Ref show) { class Impl : public ComponentBase { public: Impl(ConstStringRef label, Component child, Ref show) - : label_(label), show_(std::move(show)) { + : show_(std::move(show)) { CheckboxOption opt; opt.transform = [](EntryState s) { auto prefix = text(s.state ? "▼ " : "▶ "); @@ -41,11 +41,10 @@ Component Collapsible(ConstStringRef label, Component child, Ref show) { return hbox({prefix, t}); }; Add(Container::Vertical({ - Checkbox(label_, show_.operator->(), opt), + Checkbox(label, show_.operator->(), opt), Maybe(std::move(child), show_.operator->()), })); } - ConstStringRef label_; Ref show_; };