mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 20:03:20 +08:00
Fix is_dirty check for Repo Settings (#6309)
This commit is contained in:
parent
e6fcfd97af
commit
6a3884a0a9
|
@ -74,7 +74,7 @@ ENDCLASS.
|
|||
|
||||
|
||||
|
||||
CLASS ZCL_ABAPGIT_GUI_PAGE_SETT_REPO IMPLEMENTATION.
|
||||
CLASS zcl_abapgit_gui_page_sett_repo IMPLEMENTATION.
|
||||
|
||||
|
||||
METHOD constructor.
|
||||
|
@ -218,7 +218,7 @@ CLASS ZCL_ABAPGIT_GUI_PAGE_SETT_REPO IMPLEMENTATION.
|
|||
iv_val = zcl_abapgit_lxe_texts=>convert_table_to_lang_string( lo_dot->get_i18n_languages( ) ) ).
|
||||
mo_form_data->set(
|
||||
iv_key = c_id-use_lxe
|
||||
iv_val = lo_dot->use_lxe( ) ).
|
||||
iv_val = boolc( lo_dot->use_lxe( ) = abap_true ) ) ##TYPE.
|
||||
mo_form_data->set(
|
||||
iv_key = c_id-folder_logic
|
||||
iv_val = ls_dot-folder_logic ).
|
||||
|
@ -303,7 +303,7 @@ CLASS ZCL_ABAPGIT_GUI_PAGE_SETT_REPO IMPLEMENTATION.
|
|||
zcl_abapgit_lxe_texts=>convert_lang_string_to_table(
|
||||
iv_langs = mo_form_data->get( c_id-i18n_langs )
|
||||
iv_skip_main_language = lo_dot->get_main_language( ) ) ).
|
||||
lo_dot->use_lxe( boolc( mo_form_data->get( c_id-use_lxe ) = 'X' ) ).
|
||||
lo_dot->use_lxe( boolc( mo_form_data->get( c_id-use_lxe ) = abap_true ) ).
|
||||
|
||||
" Remove all ignores
|
||||
lt_ignore = lo_dot->get_data( )-ignore.
|
||||
|
|
Loading…
Reference in New Issue
Block a user