modified descriptions of plugin APIs 28/94728/2
authorchanywa <cbible.kim@samsung.com>
Tue, 1 Nov 2016 02:22:38 +0000 (11:22 +0900)
committerchanywa <cbible.kim@samsung.com>
Tue, 1 Nov 2016 02:25:37 +0000 (11:25 +0900)
Change-Id: I7a670d5df54cafcce24b2bd2b1b790b7334816e4

include/maps_view_plugin.h

index 5826703..c6bf17f 100644 (file)
@@ -104,35 +104,35 @@ int maps_view_get_zoom_factor(const maps_view_h view, double *zoom_factor);
  * @brief      Get the view handle of maps plugin.
  * @details This function gets the view handle of maps plugin.
  *
- * @param[in]  hView                                   The view handle
+ * @param[in]  view                                    The view handle
  * @param[in]  maps_plugin_view_handle The view handle of maps plugin
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
- * @pre @a hView is created using maps_view_create().
+ * @pre @a view is created using maps_view_create().
  *
  * @see maps_view_create()
  */
-int maps_view_get_maps_plugin_view_handle(maps_view_h hView, void **maps_plugin_view_handle);
+int maps_view_get_maps_plugin_view_handle(maps_view_h view, void **maps_plugin_view_handle);
 
 /**
  * @brief      Set the view handle of maps plugin.
  * @details This function sets the view handle of maps plugin.
  *
- * @param[in]  hView                                   The view handle
+ * @param[in]  view                                    The view handle
  * @param[in]  maps_plugin_view_handle The view handle of maps plugin
  * @return     0 on success, otherwise a negative error value
  * @retval     #MAPS_ERROR_NONE Successful
  * @retval     #MAPS_ERROR_INVALID_PARAMETER Invalid parameter
  * @retval     #MAPS_ERROR_NOT_SUPPORTED Not supported
  *
- * @pre @a hView is created using maps_view_create().
+ * @pre @a view is created using maps_view_create().
  *
  * @see maps_view_create()
  */
-int maps_view_set_maps_plugin_view_handle(maps_view_h hView, void *maps_plugin_view_handle);
+int maps_view_set_maps_plugin_view_handle(maps_view_h view, void *maps_plugin_view_handle);
 
 #ifdef __cplusplus
 }