This commit is contained in:
larshp 2016-12-09 11:00:37 +01:00
parent 6b8f63e364
commit d4c29d6ce7
2 changed files with 5 additions and 6 deletions

View File

@ -356,11 +356,10 @@ CLASS lcl_gui_page_diff IMPLEMENTATION.
ro_html->add( title( 'DIFF' ) ). ro_html->add( title( 'DIFF' ) ).
LOOP AT mt_diff_files INTO ls_diff_file. LOOP AT mt_diff_files INTO ls_diff_file.
cl_progress_indicator=>progress_indicate( lcl_progress=>show( iv_key = 'Diff'
i_text = |Render Diff - { ls_diff_file-filename }| iv_current = sy-tabix
i_processed = sy-tabix iv_total = lines( mt_diff_files )
i_total = lines( mt_diff_files ) iv_text = |Render Diff - { ls_diff_file-filename }| ).
i_output_immediately = abap_true ).
ro_html->add( render_diff( ls_diff_file ) ). ro_html->add( render_diff( ls_diff_file ) ).
ENDLOOP. ENDLOOP.