Skip to content

Commit 32c9296

Browse files
authored
alv column: fix type (#36)
1 parent 92e66e5 commit 32c9296

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
},
1212
"license": "MIT",
1313
"dependencies": {
14-
"@abaplint/cli": "^2.110.6",
15-
"@abaplint/runtime": "^2.10.1",
14+
"@abaplint/cli": "^2.112.8",
15+
"@abaplint/runtime": "^2.10.5",
1616
"@abaplint/database-sqlite": "^2.8.25",
17-
"@abaplint/transpiler-cli": "^2.10.1"
17+
"@abaplint/transpiler-cli": "^2.10.5"
1818
}
1919
}

src/salv/cl_salv_column.clas.abap

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
CLASS cl_salv_column DEFINITION PUBLIC.
22
PUBLIC SECTION.
33
METHODS set_technical IMPORTING value TYPE abap_bool DEFAULT abap_true.
4-
METHODS set_short_text IMPORTING value TYPE string.
5-
METHODS set_medium_text IMPORTING value TYPE string.
6-
METHODS set_long_text IMPORTING value TYPE string.
4+
METHODS set_short_text IMPORTING value TYPE clike.
5+
METHODS set_medium_text IMPORTING value TYPE clike.
6+
METHODS set_long_text IMPORTING value TYPE clike.
77
METHODS set_output_length IMPORTING value TYPE any.
88
METHODS set_sign IMPORTING value TYPE any OPTIONAL.
99
METHODS set_optimized IMPORTING value TYPE abap_bool DEFAULT abap_true.

0 commit comments

Comments
 (0)