| 563 | } |
| 564 | |
| 565 | void CPHElement::Freeze() |
| 566 | { |
| 567 | if (!m_body) |
| 568 | return; |
| 569 | |
| 570 | m_flags.set(flWasEnabledBeforeFreeze, !!dBodyIsEnabled(m_body)); |
| 571 | dBodyDisable(m_body); |
| 572 | } |
| 573 | void CPHElement::UnFreeze() |
| 574 | { |
| 575 | if (!m_body) |
nothing calls this directly
no test coverage detected