--------------------- CHILD ---------------------
| 473 | } |
| 474 | // --------------------- CHILD --------------------- |
| 475 | dialog *dialog::child() const |
| 476 | { |
| 477 | if ( this && this->isDialog() && this->u.dlg.pFirstChild ) |
| 478 | return this->u.dlg.pFirstChild; |
| 479 | return nullptr; |
| 480 | } |
| 481 | // --------------------- ADD ----------------------- |
| 482 | bool dialog::addControl(dialog *ctrl) |
| 483 | { |
no test coverage detected