| 537 | } |
| 538 | |
| 539 | void CPHElement::Enable() |
| 540 | { |
| 541 | if (!isActive()) |
| 542 | return; |
| 543 | m_shell->EnableObject(0); |
| 544 | if (dBodyIsEnabled(m_body)) |
| 545 | return; |
| 546 | dBodyEnable(m_body); |
| 547 | } |
| 548 | |
| 549 | void CPHElement::Disable() |
| 550 | { |
nothing calls this directly
no test coverage detected