| 345 | } |
| 346 | |
| 347 | void SkinDataUtility::ShowRegions(DataPtr _skinData) |
| 348 | { |
| 349 | for (Data::VectorData::const_iterator child = _skinData->getChilds().begin(); |
| 350 | child != _skinData->getChilds().end(); |
| 351 | child++) |
| 352 | { |
| 353 | if ((*child)->getType()->getName() != "Region") |
| 354 | continue; |
| 355 | |
| 356 | (*child)->setPropertyValue("Visible", "True"); |
| 357 | } |
| 358 | } |
| 359 | |
| 360 | } |
nothing calls this directly
no test coverage detected