MCPcopy Create free account
hub / github.com/MyGUI/mygui / setMinMax

Method setMinMax

MyGUIEngine/src/MyGUI_BackwardCompatibility.cpp:633–637  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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);

Callers

nothing calls this directly

Calls 2

setMinSizeMethod · 0.80
setMaxSizeMethod · 0.80

Tested by

no test coverage detected