Changes by ACR
authorKyuho Jo <kyuho.jo@samsung.com>
Tue, 31 Mar 2015 11:19:56 +0000 (20:19 +0900)
committerKyuho Jo <kyuho.jo@samsung.com>
Tue, 31 Mar 2015 11:19:56 +0000 (20:19 +0900)
Change-Id: I2df266f573f7d12b65f49559a26f641ca02f36bd
Signed-off-by: Kyuho Jo <kyuho.jo@samsung.com>
include/widget.h

index de6e93f..f49ce22 100755 (executable)
@@ -40,7 +40,7 @@ extern "C" {
  * @brief Creates an Evas to draw widget contents
  * @details Creating a new Object using widget frame buffer.
  * @since_tizen 2.4
- * @param[in] id Instance Id
+ * @param[in] widget_intance_id widget instance id from widget from widget_provider_event_callback_s functions
  * @privlevel public
  * @privilege %http://tizen.org/privilege/widget.provider
  * @feature http://tizen.org/feature/shell.appwidget
@@ -48,13 +48,13 @@ extern "C" {
  * @retval Valid pointer of Evas instance on success,
  * @retval @c NULL failed to create, get_last_result() will returns reason of failure
  */
-extern Evas *widget_get_evas(const char *id);
+extern Evas *widget_get_evas(const char *widget_intance_id);
 
 /**
  * @brief Requests to schedule the update operation to a provider.
  * @detail Insert a update event to event queue and it will be handled by update callback function.
  * @since_tizen 2.4
- * @param[in] id Instance Id which is passed to you via the first parameter of every widget_XXXX interface functions
+ * @param[in] widget_intance_id A instance id of the widget to be updated
  * @feature http://tizen.org/feature/shell.appwidget
  * @return If succes returns 0 or return less than 0
  * @retval #WIDGET_ERROR_NONE Successfully triggered
@@ -64,7 +64,7 @@ extern Evas *widget_get_evas(const char *id);
  * @retval #WIDGET_ERROR_PERMISSION_DENIED Permission denied
  * @retval #WIDGET_ERROR_DISABLED in case of direct request for updating is disabled
  */
-extern int widget_request_update(const char *id);
+extern int widget_request_update(const char *widget_intance_id);
 
 /**
  * @}