Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
},
"license": "MIT",
"dependencies": {
"@abaplint/cli": "^2.113.188",
"@abaplint/runtime": "^2.11.62",
"@abaplint/database-sqlite": "^2.11.0",
"@abaplint/transpiler-cli": "^2.11.62"
"@abaplint/cli": "^2.113.219",
"@abaplint/runtime": "^2.11.96",
"@abaplint/database-sqlite": "^2.11.78",
"@abaplint/transpiler-cli": "^2.11.96"
}
}
5 changes: 3 additions & 2 deletions src/cl_gui_column_tree.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,12 @@ CLASS cl_gui_column_tree DEFINITION PUBLIC.

EVENTS button_click
EXPORTING
VALUE(node_key) TYPE string
VALUE(node_key) TYPE string
VALUE(item_name) TYPE string.

EVENTS link_click
EXPORTING
VALUE(node_key) TYPE string
VALUE(node_key) TYPE string
VALUE(item_name) TYPE string.
ENDCLASS.

Expand Down
8 changes: 4 additions & 4 deletions src/cl_gui_html_viewer.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ CLASS cl_gui_html_viewer DEFINITION PUBLIC INHERITING FROM cl_gui_control.
PUBLIC SECTION.
EVENTS sapevent
EXPORTING
VALUE(action) TYPE c OPTIONAL
VALUE(frame) TYPE c OPTIONAL
VALUE(getdata) TYPE c OPTIONAL
VALUE(postdata) TYPE any OPTIONAL
VALUE(action) TYPE c OPTIONAL
VALUE(frame) TYPE c OPTIONAL
VALUE(getdata) TYPE c OPTIONAL
VALUE(postdata) TYPE any OPTIONAL
VALUE(query_table) TYPE any OPTIONAL.

METHODS constructor
Expand Down
2 changes: 1 addition & 1 deletion src/salv/cl_salv_events_table.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ CLASS cl_salv_events_table DEFINITION PUBLIC.

EVENTS link_click
EXPORTING
VALUE(row) TYPE i
VALUE(row) TYPE i
VALUE(column) TYPE string.

ENDCLASS.
Expand Down
2 changes: 1 addition & 1 deletion src/tree/cl_gui_alv_tree.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ CLASS cl_gui_alv_tree DEFINITION INHERITING FROM cl_alv_tree_base PUBLIC.
EVENTS item_double_click
EXPORTING
VALUE(fieldname) TYPE any
VALUE(node_key) TYPE any.
VALUE(node_key) TYPE any.

EVENTS node_double_click
EXPORTING
Expand Down