| 2426 | } |
| 2427 | |
| 2428 | void wxShape::MakeMandatoryControlPoints() |
| 2429 | { |
| 2430 | wxNode *node = m_children.GetFirst(); |
| 2431 | while (node) |
| 2432 | { |
| 2433 | wxShape *child = (wxShape *)node->GetData(); |
| 2434 | child->MakeMandatoryControlPoints(); |
| 2435 | node = node->GetNext(); |
| 2436 | } |
| 2437 | } |
| 2438 | |
| 2439 | void wxShape::ResetMandatoryControlPoints() |
| 2440 | { |
no outgoing calls
no test coverage detected