From 4943fbb6e49f3b0cab8c0cca0e690a8e1d949814 Mon Sep 17 00:00:00 2001 From: houguobiao Date: Sat, 10 May 2025 15:05:15 +0800 Subject: [PATCH] =?UTF-8?q?Dialog=E7=BB=84=E4=BB=B6API=E7=89=88=E6=9C=AC?= =?UTF-8?q?=E5=8F=98=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: houguobiao Change-Id: I72c90a517a91f3f0f5667dddb4f133b52fc1d996 --- arkui/ace_engine/native/native_dialog.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/arkui/ace_engine/native/native_dialog.h b/arkui/ace_engine/native/native_dialog.h index ed4f86344..bf7d63a01 100644 --- a/arkui/ace_engine/native/native_dialog.h +++ b/arkui/ace_engine/native/native_dialog.h @@ -389,19 +389,19 @@ typedef struct { * @brief Provides the custom dialog box APIs for the native side. * * @version 3 - * @since 18 + * @since 19 */ typedef struct { /** * @brief Provides the custom dialog box APIs for the native side. The API scope is {@link ArkUI_NativeDialogAPI_1} * - * @since 18 + * @since 19 */ ArkUI_NativeDialogAPI_1 nativeDialogAPI1; /** * @brief Provides the custom dialog box APIs for the native side. The API scope is {@link ArkUI_NativeDialogAPI_2} * - * @since 18 + * @since 19 */ ArkUI_NativeDialogAPI_2 nativeDialogAPI2; /** @@ -413,7 +413,7 @@ typedef struct { * @return Returns the error code. * Returns {@link ARKUI_ERROR_CODE_NO_ERROR} if the operation is successful. * Returns {@link ARKUI_ERROR_CODE_PARAM_INVALID} if a parameter error occurs. - * @since 18 + * @since 19 */ int32_t (*setLevelOrder)(ArkUI_NativeDialogHandle handle, double levelOrder); /** @@ -639,7 +639,7 @@ typedef struct { * @return Returns the error code. * Returns {@link ARKUI_ERROR_CODE_NO_ERROR} if the operation is successful. * Returns {@link ARKUI_ERROR_CODE_PARAM_INVALID} if a parameter error occurs. - * @since 18 + * @since 19 */ int32_t (*setFocusable)(ArkUI_NativeDialogHandle handle, bool focusable); -- Gitee