| 23 | } |
| 24 | |
| 25 | ui::Label* label() { |
| 26 | auto label = getWidget<ui::Label>(); |
| 27 | if (!label) |
| 28 | throw script::ObjectDestroyedException{}; |
| 29 | return label; |
| 30 | } |
| 31 | |
| 32 | DisplayType getDisplayType() override {return DisplayType::Block;} |
| 33 | Handle build() override {return new ui::Label(m_text);} |
no outgoing calls
no test coverage detected