Fix regression

This commit is contained in:
sandraros 2022-05-05 18:24:52 +00:00
parent b317b9eecc
commit 2f97321378

View File

@ -501,15 +501,15 @@ CLASS zcl_excel IMPLEMENTATION.
WHILE lo_iterator->has_next( ) = abap_true. WHILE lo_iterator->has_next( ) = abap_true.
lo_style ?= lo_iterator->get_next( ). lo_style ?= lo_iterator->get_next( ).
IF lo_style->get_guid( ) = ip_guid. IF lo_style->get_guid( ) = ip_guid.
eo_style = lo_style. IF ip_conv_class_to_struct = abap_true.
RETURN.
ENDIF.
ENDWHILE.
IF lo_style IS BOUND AND ip_conv_class_to_struct = abap_true.
zcl_excel_common=>recursive_class_to_struct( EXPORTING i_source = lo_style zcl_excel_common=>recursive_class_to_struct( EXPORTING i_source = lo_style
CHANGING e_target = es_stylemapping-complete_style CHANGING e_target = es_stylemapping-complete_style
e_targetx = es_stylemapping-complete_stylex ). e_targetx = es_stylemapping-complete_stylex ).
ENDIF. ENDIF.
eo_style = lo_style.
RETURN.
ENDIF.
ENDWHILE.
ENDIF. ENDIF.
ENDMETHOD. ENDMETHOD.