MCPcopy Create free account
hub / github.com/OGSR/OGSR-Engine / SetRange

Method SetRange

ogsr_engine/xrGame/ui/UIScrollBar.cpp:115–123  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

113}
114
115void CUIScrollBar::SetRange(int iMin, int iMax)
116{
117 m_iMinPos = iMin;
118 m_iMaxPos = iMax;
119 VERIFY(iMax >= iMin);
120 if (iMax < iMin)
121 iMax = iMin;
122 UpdateScrollBar();
123}
124void CUIScrollBar::Show(bool b)
125{
126 if (!m_b_enabled)

Callers 9

ReinitScrollMethod · 0.45
AddItemMethod · 0.45
InitProgressBarMethod · 0.45
InitFromXmlMethod · 0.45
UpdateScrollMethod · 0.45
UpdateScrollMethod · 0.45
InitMethod · 0.45
RemoveItemMethod · 0.45
RemoveAllMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected