| 263 | } |
| 264 | |
| 265 | void SpinButton::SetStep( float step ) { |
| 266 | m_adjustment->SetMinorStep( step ); |
| 267 | |
| 268 | UpdateTextFromAdjustment(); |
| 269 | } |
| 270 | |
| 271 | void SpinButton::SetRange( float minimum, float maximum ) { |
| 272 | m_adjustment->SetLower( minimum ); |
nothing calls this directly
no test coverage detected