| 57 | } |
| 58 | |
| 59 | bool ScrollBar::setMaximum(int newMaximum) |
| 60 | { |
| 61 | if (Maximum == newMaximum) |
| 62 | { |
| 63 | return false; |
| 64 | } |
| 65 | Maximum = newMaximum; |
| 66 | setValue(Value); |
| 67 | updateScrollChangeValue(); |
| 68 | setDirty(); |
| 69 | return true; |
| 70 | } |
| 71 | |
| 72 | void ScrollBar::scrollPrev(int amount) |
| 73 | { |
no outgoing calls
no test coverage detected