| 1321 | } |
| 1322 | |
| 1323 | float contours::font_size() const { |
| 1324 | if (font_size_) { |
| 1325 | return *font_size_; |
| 1326 | } else { |
| 1327 | return parent_->font_size(); |
| 1328 | } |
| 1329 | } |
| 1330 | |
| 1331 | class contours &contours::font_size(const float &font_size) { |
| 1332 | font_size_ = font_size; |
nothing calls this directly
no outgoing calls
no test coverage detected