Skip to content

Commit

Permalink
shorten length for renaming (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
oblomov-dev authored Apr 21, 2024
1 parent 60e358a commit e9c9201
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/z2ui5_cl_demo_app_000.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
built_in TYPE abap_bool,
END OF ms_check_expanded.

DATA mt_scroll TYPE z2ui5_cl_fw_cc_scrolling=>ty_t_item.
DATA mt_scroll TYPE z2ui5_cl_cc_scrolling=>ty_t_item.
DATA mv_set_scroll TYPE abap_bool.

PROTECTED SECTION.
Expand Down
2 changes: 1 addition & 1 deletion src/z2ui5_cl_demo_app_118.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ CLASS Z2UI5_CL_DEMO_APP_118 IMPLEMENTATION.
client->view_display( z2ui5_cl_xml_view=>factory(
)->_z2ui5( )->timer( client->_event( `START` )
* )->_cc( )->font_awesome( )->load_icons( font_uri = `https://cdn.jsdelivr.net/gh/choper725/resources/dist/`
)->_generic( ns = `html` name = `script` )->_cc_plain_xml( Z2UI5_CL_CC_FONT_AWESOME_ICONS=>get_js_icon( `https://cdn.jsdelivr.net/gh/choper725/resources/dist/` ) )->get_parent(
)->_generic( ns = `html` name = `script` )->_cc_plain_xml( z2ui5_cl_cc_font_awesome=>get_js_icon( `https://cdn.jsdelivr.net/gh/choper725/resources/dist/` ) )->get_parent(
)->stringify( ) ).


Expand Down
2 changes: 1 addition & 1 deletion src/z2ui5_cl_demo_app_134.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CLASS z2ui5_cl_demo_app_134 DEFINITION PUBLIC.
DATA selend TYPE string.
DATA update_focus TYPE abap_bool.

DATA mt_scroll TYPE z2ui5_cl_fw_cc_scrolling=>ty_t_item.
DATA mt_scroll TYPE z2ui5_cl_cc_scrolling=>ty_t_item.

PROTECTED SECTION.
METHODS display_view
Expand Down
4 changes: 2 additions & 2 deletions src/z2ui5_cl_demo_app_162.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ CLASS z2ui5_cl_demo_app_162 IMPLEMENTATION.
client->view_model_update( ).

WHEN `PREVIEW_FILTER`.
client->nav_app_call( z2ui5_cl_popup_get_range_multi=>factory( mt_sql ) ).
client->nav_app_call( z2ui5_cl_pop_get_range_multi=>factory( mt_sql ) ).

WHEN 'BACK'.
client->nav_app_leave( client->get_app( client->get( )-s_draft-id_prev_app_stack ) ).
Expand Down Expand Up @@ -131,7 +131,7 @@ CLASS z2ui5_cl_demo_app_162 IMPLEMENTATION.

IF client->get( )-check_on_navigated = abap_true.
TRY.
DATA(lo_value_help) = CAST z2ui5_cl_popup_get_range_multi( client->get_app( client->get( )-s_draft-id_prev_app ) ).
DATA(lo_value_help) = CAST z2ui5_cl_pop_get_range_multi( client->get_app( client->get( )-s_draft-id_prev_app ) ).
IF lo_value_help->result( )-check_confirmed = abap_true.
mt_sql = lo_value_help->result( )-t_sql.
set_data( ).
Expand Down
2 changes: 0 additions & 2 deletions src/z2ui5_cl_demo_app_190.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ CLASS z2ui5_cl_demo_app_190 DEFINITION
DATA mv_table TYPE string.
DATA mt_table TYPE REF TO data.
DATA mt_table_tmp TYPE REF TO data.
* DATA ms_table_row TYPE REF TO data.
* DATA mt_table_del TYPE REF TO data.
DATA mt_comp TYPE abap_component_tab.
DATA ms_fixval TYPE REF TO data.

Expand Down

0 comments on commit e9c9201

Please sign in to comment.