| 631 | static_cast<Window*>(this)->setVisibleSmooth(false); |
| 632 | } |
| 633 | void MemberObsolete<Window>::setMinMax(const IntRect& _minmax) |
| 634 | { |
| 635 | static_cast<Window*>(this)->setMinSize(_minmax.left, _minmax.top); |
| 636 | static_cast<Window*>(this)->setMaxSize(_minmax.right, _minmax.bottom); |
| 637 | } |
| 638 | void MemberObsolete<Window>::setMinMax(int _min_w, int _min_h, int _max_w, int _max_h) |
| 639 | { |
| 640 | static_cast<Window*>(this)->setMinSize(_min_w, _min_h); |
nothing calls this directly
no test coverage detected