replace boolean with abap_bool (#694)

This commit is contained in:
Lars Hvam 2020-09-19 08:11:03 +02:00 committed by GitHub
parent 100e534c4a
commit 5eae938b01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -120,7 +120,7 @@ protected section.
methods GET_IXML_FROM_ZIP_ARCHIVE methods GET_IXML_FROM_ZIP_ARCHIVE
importing importing
!I_FILENAME type STRING !I_FILENAME type STRING
!IS_NORMALIZING type BOOLEAN default 'X' !IS_NORMALIZING type abap_bool default 'X'
returning returning
value(R_IXML) type ref to IF_IXML_DOCUMENT value(R_IXML) type ref to IF_IXML_DOCUMENT
raising raising

View File

@ -15,7 +15,7 @@ public section.
importing importing
!IO_WORKSHEET type ref to ZCL_EXCEL_WORKSHEET optional !IO_WORKSHEET type ref to ZCL_EXCEL_WORKSHEET optional
returning returning
value(R_COLLAPSED) type BOOLEAN . value(R_COLLAPSED) type abap_bool .
methods GET_OUTLINE_LEVEL methods GET_OUTLINE_LEVEL
importing importing
!IO_WORKSHEET type ref to ZCL_EXCEL_WORKSHEET optional !IO_WORKSHEET type ref to ZCL_EXCEL_WORKSHEET optional
@ -31,7 +31,7 @@ public section.
importing importing
!IO_WORKSHEET type ref to ZCL_EXCEL_WORKSHEET optional !IO_WORKSHEET type ref to ZCL_EXCEL_WORKSHEET optional
returning returning
value(R_VISIBLE) type BOOLEAN . value(R_VISIBLE) type abap_bool .
methods GET_XF_INDEX methods GET_XF_INDEX
returning returning
value(R_XF_INDEX) type INT4 . value(R_XF_INDEX) type INT4 .