From d774186039a2804e575331f7a30d3f400654c409 Mon Sep 17 00:00:00 2001 From: Hwankyu Jhun Date: Thu, 5 Sep 2019 09:50:54 +0900 Subject: [PATCH] Fix description of component_state_e Change-Id: I93c8fde92dba8579338b46f25557b33211fe637e Signed-off-by: Hwankyu Jhun --- include/component_context.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/component_context.h b/include/component_context.h index 145599e..7f65631 100644 --- a/include/component_context.h +++ b/include/component_context.h @@ -46,12 +46,12 @@ typedef void *component_context_h; * @since_tizen 5.5 */ typedef enum { - COMPONENT_STATE_INITIALIZED, /**< The initialized state. This is the state when the component is constructed but the create callback is not called yet */ - COMPONENT_STATE_CREATED, /**< The created state. This state is reached after the create callback is called. */ - COMPONENT_STATE_STARTED, /**< The started state. This state is reached after the start callback is called. */ - COMPONENT_STATE_RESUMED, /**< The resumed state. This state is reached after the resume callback is called. */ - COMPONENT_STATE_PAUSED, /**< The paused state. This state is reached after the pause callback is called. */ - COMPONENT_STATE_DESTROYED, /**< The destroyed state. This state is reached right before the destroy callback call. */ + COMPONENT_STATE_INITIALIZED, /**< The initialized state. The state that the component is constructed but the callback for creating a component is not called yet. */ + COMPONENT_STATE_CREATED, /**< The created state. This state that the creating callback is called. */ + COMPONENT_STATE_STARTED, /**< The started state. This state that the starting callback is called. */ + COMPONENT_STATE_RESUMED, /**< The resumed state. This state that the resuming callback is called. */ + COMPONENT_STATE_PAUSED, /**< The paused state. This state that the pausing callback is called. */ + COMPONENT_STATE_DESTROYED, /**< The destroyed state. This state that right before the destroying callback is called. */ } component_state_e; /** -- 2.7.4