| 70 | } |
| 71 | |
| 72 | void Adjustment::SetUpper( float new_upper ) { |
| 73 | m_upper = new_upper; |
| 74 | |
| 75 | if( m_upper < m_lower ) { |
| 76 | m_lower = m_upper; |
| 77 | } |
| 78 | |
| 79 | SetValue( GetValue() ); |
| 80 | } |
| 81 | |
| 82 | float Adjustment::GetMinorStep() const { |
| 83 | return m_minor_step; |
no outgoing calls
no test coverage detected