Skip to content

Commit 63fb3fe

Browse files
authored
cleanup even method call
1 parent 6635f66 commit 63fb3fe

File tree

75 files changed

+91
-91
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+91
-91
lines changed

src/01/z2ui5_cl_demo_app_lp_01.clas.abap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ CLASS z2ui5_cl_demo_app_lp_01 IMPLEMENTATION.
2525
)->content( 'form'
2626
)->label( ``
2727
)->button( text = 'Read Parameters'
28-
press = client->_event( val = 'READ_PARAMS' )
28+
press = client->_event( 'READ_PARAMS' )
2929
)->label( ``
3030
)->button( text = 'Go Back'
31-
press = client->_event( val = 'BACK' ) )->stringify( ) ).
31+
press = client->_event( 'BACK' ) )->stringify( ) ).
3232

3333
ENDIF.
3434

src/01/z2ui5_cl_demo_app_lp_02.clas.abap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ CLASS Z2UI5_CL_DEMO_APP_LP_02 IMPLEMENTATION.
3838
)->input( client->_bind_edit( mv_title )
3939
)->label( ``
4040
)->button( text = 'Go Back'
41-
press = client->_event( val = 'BACK' ) )->stringify( ) ).
41+
press = client->_event( 'BACK' ) )->stringify( ) ).
4242

4343
ENDIF.
4444

src/01/z2ui5_cl_demo_app_lp_03.clas.abap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ CLASS z2ui5_cl_demo_app_lp_03 IMPLEMENTATION.
4040
)->page(
4141
showheader = xsdbool( abap_false = client->get( )-check_launchpad_active )
4242
title = 'abap2UI5 - Cross App Navigation App 127 - This App only works when started via Launchpad'
43-
navbuttonpress = client->_event( val = 'BACK' )
43+
navbuttonpress = client->_event( 'BACK' )
4444
shownavbutton = client->check_app_prev_stack( )
4545
)->header_content(
4646
)->link(

src/01/z2ui5_cl_demo_app_lp_04.clas.abap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ CLASS z2ui5_cl_demo_app_lp_04 IMPLEMENTATION.
4040
)->page(
4141
showheader = xsdbool( abap_false = client->get( )-check_launchpad_active )
4242
title = 'abap2UI5 - Cross App Navigation App 128'
43-
navbuttonpress = client->_event( val = 'BACK' )
43+
navbuttonpress = client->_event( 'BACK' )
4444
shownavbutton = client->check_app_prev_stack( )
4545
)->header_content(
4646
)->link(

src/z2ui5_cl_demo_app_000.clas.abap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ CLASS z2ui5_cl_demo_app_000 IMPLEMENTATION.
6565
DATA(page) = z2ui5_cl_xml_view=>factory(
6666
)->shell( )->page( id = `page`
6767
title = c_title
68-
navbuttonpress = client->_event( val = 'BACK' )
68+
navbuttonpress = client->_event( 'BACK' )
6969
shownavbutton = xsdbool( client->get( )-s_draft-id_prev_app_stack IS NOT INITIAL )
7070
)->header_content(
7171
)->toolbar_spacer(

src/z2ui5_cl_demo_app_001.clas.abap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ CLASS z2ui5_cl_demo_app_001 IMPLEMENTATION.
6060
)->input( value = product enabled = abap_false
6161
)->button(
6262
text = 'post'
63-
press = client->_event( val = 'BUTTON_POST' )
63+
press = client->_event( 'BUTTON_POST' )
6464
)->stringify( ) ).
6565

6666
ENDMETHOD.

src/z2ui5_cl_demo_app_004.clas.abap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ CLASS z2ui5_cl_demo_app_004 IMPLEMENTATION.
6565
DATA(page) = view->shell(
6666
)->page(
6767
title = 'abap2UI5 - Controller'
68-
navbuttonpress = client->_event( val = 'BACK' )
68+
navbuttonpress = client->_event( 'BACK' )
6969
shownavbutton = xsdbool( client->get( )-s_draft-id_prev_app_stack IS NOT INITIAL ) ).
7070

7171
page->grid( 'L6 M12 S12' )->content( 'layout'

src/z2ui5_cl_demo_app_012.clas.abap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,15 @@ CLASS Z2UI5_CL_DEMO_APP_012 IMPLEMENTATION.
6464
DATA(lo_main) = z2ui5_cl_xml_view=>factory( )->shell( ).
6565
DATA(page) = lo_main->page(
6666
title = 'abap2UI5 - Popups'
67-
navbuttonpress = client->_event( val = 'BACK' )
67+
navbuttonpress = client->_event( 'BACK' )
6868
shownavbutton = client->check_app_prev_stack( ) ).
6969

7070
DATA(grid) = page->grid( 'L7 M12 S12' )->content( 'layout'
7171
)->simple_form( 'Popup in same App' )->content( 'form'
7272
)->label( 'Demo'
7373
)->button(
7474
text = 'popup rendering, no background rendering'
75-
press = client->_event( val = 'BUTTON_POPUP_01' )
75+
press = client->_event( 'BUTTON_POPUP_01' )
7676
)->label( 'Demo'
7777
)->button(
7878
text = 'popup rendering, background destroyed and rerendering'

src/z2ui5_cl_demo_app_018.clas.abap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ CLASS Z2UI5_CL_DEMO_APP_018 IMPLEMENTATION.
6767
view->shell(
6868
)->page(
6969
title = 'abap2UI5 - Template'
70-
navbuttonpress = client->_event( val = 'BACK' )
70+
navbuttonpress = client->_event( 'BACK' )
7171
shownavbutton = client->check_app_prev_stack( )
7272
)->simple_form( title = 'VIEW_MAIN'
7373
editable = abap_true
@@ -105,7 +105,7 @@ CLASS Z2UI5_CL_DEMO_APP_018 IMPLEMENTATION.
105105
view->shell(
106106
)->page(
107107
title = 'abap2UI5 - Template'
108-
navbuttonpress = client->_event( val = 'BACK' )
108+
navbuttonpress = client->_event( 'BACK' )
109109
shownavbutton = client->check_app_prev_stack( )
110110
)->simple_form( 'VIEW_SECOND'
111111
)->content( 'form'

src/z2ui5_cl_demo_app_024.clas.abap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ CLASS z2ui5_cl_demo_app_024 IMPLEMENTATION.
2727
DATA(view) = z2ui5_cl_xml_view=>factory( ).
2828
view->shell(
2929
)->page( title = 'abap2UI5 - flow logic - APP 01'
30-
navbuttonpress = client->_event( val = 'BACK' )
30+
navbuttonpress = client->_event( 'BACK' )
3131
shownavbutton = client->check_app_prev_stack( )
3232
)->grid( 'L6 M12 S12' )->content( 'layout'
3333
)->simple_form( 'Controller' )->content( 'form'

0 commit comments

Comments
 (0)