replace tabs with spaces

This commit is contained in:
larshp 2018-11-24 11:12:35 +00:00
parent 49f7113883
commit 59f270b682
6 changed files with 14 additions and 14 deletions

View File

@ -108,7 +108,7 @@ method CONSTRUCTOR.
me->width = -1. me->width = -1.
me->auto_size = abap_false. me->auto_size = abap_false.
me->visible = abap_true. me->visible = abap_true.
me->outline_level = 0. me->outline_level = 0.
me->collapsed = abap_false. me->collapsed = abap_false.
me->excel = ip_excel. "ins issue #157 - Allow Style for columns me->excel = ip_excel. "ins issue #157 - Allow Style for columns
me->worksheet = ip_worksheet. "ins issue #157 - Allow Style for columns me->worksheet = ip_worksheet. "ins issue #157 - Allow Style for columns

View File

@ -59,7 +59,7 @@ CLASS ZCL_EXCEL_COLUMNS IMPLEMENTATION.
insert LS_HASHED_COLUMN into table COLUMNS_HASEHD . insert LS_HASHED_COLUMN into table COLUMNS_HASEHD .
COLUMNS->ADD( IO_COLUMN ). COLUMNS->ADD( IO_COLUMN ).
endmethod. endmethod.

View File

@ -666,9 +666,9 @@ CLASS lcl_excel_common_test IMPLEMENTATION.
METHOD split_file. METHOD split_file.
* ============================ * ============================
DATA: ep_file TYPE text255, DATA: ep_file TYPE text255,
ep_extension TYPE char10, ep_extension TYPE char10,
ep_dotextension TYPE char10. ep_dotextension TYPE char10.
* Test 1. Basic conversion * Test 1. Basic conversion

View File

@ -1036,7 +1036,7 @@ method GET_FILE.
method GET_FUNCTION_NUMBER. method GET_FUNCTION_NUMBER.
*Number Function *Number Function
*1 AVERAGE *1 AVERAGE
*2 COUNT *2 COUNT
*3 COUNTA *3 COUNTA

View File

@ -28,9 +28,9 @@ TYPES: BEGIN OF ts_subtotal_rows,
TYPES: BEGIN OF ts_styles, TYPES: BEGIN OF ts_styles,
type TYPE char1, type TYPE char1,
alignment TYPE zexcel_alignment, alignment TYPE zexcel_alignment,
inttype TYPE inttype, inttype TYPE inttype,
decimals TYPE int1, decimals TYPE int1,
style TYPE REF TO zcl_excel_style, style TYPE REF TO zcl_excel_style,
guid TYPE zexcel_cell_style, guid TYPE zexcel_cell_style,
END OF ts_styles, END OF ts_styles,
@ -38,10 +38,10 @@ TYPES: BEGIN OF ts_styles,
tt_styles TYPE HASHED TABLE OF ts_styles WITH UNIQUE KEY type alignment inttype decimals. tt_styles TYPE HASHED TABLE OF ts_styles WITH UNIQUE KEY type alignment inttype decimals.
TYPES: BEGIN OF ts_color_styles, TYPES: BEGIN OF ts_color_styles,
guid_old TYPE zexcel_cell_style, guid_old TYPE zexcel_cell_style,
fontcolor TYPE zexcel_style_color_argb, fontcolor TYPE zexcel_style_color_argb,
fillcolor TYPE zexcel_style_color_argb, fillcolor TYPE zexcel_style_color_argb,
style_new TYPE REF TO zcl_excel_style, style_new TYPE REF TO zcl_excel_style,
END OF ts_color_styles, END OF ts_color_styles,
tt_color_styles TYPE HASHED TABLE OF ts_color_styles WITH UNIQUE KEY guid_old fontcolor fillcolor. tt_color_styles TYPE HASHED TABLE OF ts_color_styles WITH UNIQUE KEY guid_old fontcolor fillcolor.

View File

@ -70,8 +70,8 @@ method CONSTRUCTOR.
operator = ''. operator = ''.
allowblank = abap_false. allowblank = abap_false.
showdropdown = abap_false. showdropdown = abap_false.
showinputmessage = abap_true. showinputmessage = abap_true.
showerrormessage = abap_true. showerrormessage = abap_true.
errortitle = ''. errortitle = ''.
error = ''. error = ''.
prompttitle = ''. prompttitle = ''.