* Region functions * */
| 710 | * |
| 711 | */ |
| 712 | void wxShape::SetFont(wxFont *the_font, int regionId) |
| 713 | { |
| 714 | m_font = the_font; |
| 715 | wxNode *node = m_regions.Item(regionId); |
| 716 | if (!node) |
| 717 | return; |
| 718 | wxShapeRegion *region = (wxShapeRegion *)node->GetData(); |
| 719 | region->SetFont(the_font); |
| 720 | } |
| 721 | |
| 722 | wxFont *wxShape::GetFont(int n) const |
| 723 | { |
no outgoing calls
no test coverage detected