| 776 | } |
| 777 | |
| 778 | float surface::font_size() const { |
| 779 | if (font_size_) { |
| 780 | return *font_size_; |
| 781 | } else { |
| 782 | return parent_->font_size(); |
| 783 | } |
| 784 | } |
| 785 | |
| 786 | class surface &surface::font_size(const float &font_size) { |
| 787 | font_size_ = font_size; |
nothing calls this directly
no outgoing calls
no test coverage detected