| 643 | } |
| 644 | |
| 645 | void HLS_Update_selection ( UINT place ) |
| 646 | { |
| 647 | if ( b_HL_edit_selection ) { |
| 648 | UINT opt = 0; |
| 649 | if ( _hl_se_exit ) { |
| 650 | HLS_Edit_selection_stop ( HL_SE_APPLY ); |
| 651 | return; |
| 652 | } |
| 653 | if ( SH_MODIF == place ) { |
| 654 | opt |= SEO_MODIFIED; |
| 655 | } else { |
| 656 | if ( !HLS_process_changes ( opt ) ) { |
| 657 | HLS_Edit_selection_stop ( HL_SE_APPLY ); |
| 658 | } |
| 659 | } |
| 660 | } else { |
| 661 | HLS_Highlight_turn(); |
| 662 | } |
| 663 | } |
| 664 | |
| 665 | BOOL _check_se_mode ( struct SCNotification *scn ) |
| 666 | { |
no test coverage detected