| 361 | } |
| 362 | |
| 363 | TabControl* TabControl::create() |
| 364 | { |
| 365 | TabControl* tabview = new TabControl(); |
| 366 | if (tabview->init()) |
| 367 | { |
| 368 | tabview->autorelease(); |
| 369 | return tabview; |
| 370 | } |
| 371 | AX_SAFE_DELETE(tabview); |
| 372 | return nullptr; |
| 373 | } |
| 374 | |
| 375 | void TabControl::setSelectTab(int index) |
| 376 | { |
nothing calls this directly
no test coverage detected