| 36 | HBox::~HBox() {} |
| 37 | |
| 38 | HBox* HBox::create() |
| 39 | { |
| 40 | HBox* widget = new HBox(); |
| 41 | if (widget->init()) |
| 42 | { |
| 43 | widget->autorelease(); |
| 44 | return widget; |
| 45 | } |
| 46 | AX_SAFE_DELETE(widget); |
| 47 | return nullptr; |
| 48 | } |
| 49 | |
| 50 | HBox* HBox::create(const Vec2& size) |
| 51 | { |
nothing calls this directly
no test coverage detected