| 56 | } |
| 57 | |
| 58 | void Adjustment::SetLower( float new_lower ) { |
| 59 | m_lower = new_lower; |
| 60 | |
| 61 | if( m_lower > m_upper ) { |
| 62 | m_upper = m_lower; |
| 63 | } |
| 64 | |
| 65 | SetValue( GetValue() ); |
| 66 | } |
| 67 | |
| 68 | float Adjustment::GetUpper() const { |
| 69 | return m_upper; |
no outgoing calls
no test coverage detected