* Scrolls the list. */
| 314 | * Scrolls the list. |
| 315 | */ |
| 316 | void ArrowButton::scroll() |
| 317 | { |
| 318 | if (_shape == ARROW_BIG_UP) |
| 319 | { |
| 320 | _list->scrollUp(false); |
| 321 | } |
| 322 | else if (_shape == ARROW_BIG_DOWN) |
| 323 | { |
| 324 | _list->scrollDown(false); |
| 325 | } |
| 326 | } |
| 327 | |
| 328 | /** |
| 329 | * Starts scrolling the associated list. |
nothing calls this directly
no test coverage detected