| 2403 | } |
| 2404 | |
| 2405 | void save_positional_value() |
| 2406 | { |
| 2407 | get_current_position(); |
| 2408 | if (!position_is_within_bounds()) |
| 2409 | clear_sum_functions(); |
| 2410 | else |
| 2411 | { |
| 2412 | cursor.move_to(position); |
| 2413 | cursor.fetch(); |
| 2414 | add_value_to_items(); |
| 2415 | } |
| 2416 | } |
| 2417 | |
| 2418 | const Frame_cursor &position_cursor; |
| 2419 | const Frame_cursor *top_bound; |