From 2bfee39febc3cb740838953a6f3812a9474b20e7 Mon Sep 17 00:00:00 2001 From: yyuanche Date: Wed, 14 May 2025 11:28:15 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90button=E3=80=91CAPI=20ARKUI=5FBUTTON?= =?UTF-8?q?=5FROUNDED=5FRECTANGLE=20change=20to=2019=20Signed-off-by:=20yy?= =?UTF-8?q?uanche=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- arkui/ace_engine/native/native_node.h | 2 -- arkui/ace_engine/native/native_type.h | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/arkui/ace_engine/native/native_node.h b/arkui/ace_engine/native/native_node.h index c6d24128e..c649d1bce 100644 --- a/arkui/ace_engine/native/native_node.h +++ b/arkui/ace_engine/native/native_node.h @@ -3523,12 +3523,10 @@ typedef enum { * Format of the {@link ArkUI_AttributeItem} parameter for setting the attribute:\n * .value[0].i32: button type. The parameter type is {@link ArkUI_ButtonType}. * The default value is ARKUI_BUTTON_TYPE_CAPSULE. \n - * After api 16 the default value change to ARKUI_BUTTON_ROUNDED_RECTANGLE. * \n * Format of the return value {@link ArkUI_AttributeItem}:\n * .value[0].i32: button type. The parameter type is {@link ArkUI_ButtonType}. * The default value is ARKUI_BUTTON_TYPE_CAPSULE. \n - * After api 16 the default value change to ARKUI_BUTTON_ROUNDED_RECTANGLE. * */ NODE_BUTTON_TYPE, diff --git a/arkui/ace_engine/native/native_type.h b/arkui/ace_engine/native/native_type.h index 8595c4076..d6710985f 100644 --- a/arkui/ace_engine/native/native_type.h +++ b/arkui/ace_engine/native/native_type.h @@ -1900,7 +1900,7 @@ typedef enum { ARKUI_BUTTON_TYPE_CIRCLE, /** * Rounded rectangle button. - * @since 18 + * @since 19 */ ARKUI_BUTTON_ROUNDED_RECTANGLE = 8 } ArkUI_ButtonType; -- Gitee