From: Marcin Masternak Date: Tue, 12 Jul 2016 15:04:19 +0000 (+0200) Subject: function description fix. X-Git-Tag: submit/tizen/20160805.024428~17 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a06eab08cf7e56fe6e8ee5c95901ab438bbf3db4;p=platform%2Fcore%2Fapi%2Fmaps-service.git function description fix. Part of the description was copy/pasted from similar function descriptions. Change-Id: I40a6b3ead768561a849f5508c28db0037e9d59ad Signed-off-by: Marcin Masternak --- diff --git a/include/maps_plugin.h b/include/maps_plugin.h index 4b5e980..9ebba6a 100755 --- a/include/maps_plugin.h +++ b/include/maps_plugin.h @@ -632,9 +632,7 @@ int maps_plugin_search_place_list(const maps_area_h boundary, * \n To check if Maps Provider is capable of Place Search and which Place * preferences are supported, see the lists of capacities and preferences above. * - * @param[in] maps The Maps Service handle * @param[in] uri The interested place uri - * @param[in] preference The place preference handle * @param[in] callback The result callback * @param[in] user_data The user data to be passed to the callback function * @param[out] request_id The request id @@ -823,6 +821,7 @@ typedef void(*maps_plugin_map_view_ready_cb) (maps_view_h hView); * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif * * @param[in] view The maps view + * @param[in] callback The result callback * @return 0 on success, otherwise a negative error value * @retval #MAPS_ERROR_NONE Successful * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter @@ -857,9 +856,6 @@ int maps_plugin_destroy_map_view(maps_view_h view); * @param[in] coordinates The coordinates of location to draw * @param[in] zoom_factor The zoom factor * @param[in] rotation_angle The rotation factor - * @param[in] callback The callback to notify that the rendering is finished - * @param[in] user_data The user data to be passed to the callback - * @param[out] request_id The id of request * @return 0 on success, otherwise a negative error value * @retval #MAPS_ERROR_NONE Successful * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter @@ -884,9 +880,6 @@ int maps_plugin_render_map(maps_view_h view, const maps_coordinates_h coordinate * @param[in] view The handle of maps_view * @param[in] delta_x The delta x * @param[in] delta_y The delta y - * @param[in] callback The callback to notify that the rendering is finished - * @param[in] user_data The user data to be passed to the callback - * @param[out] request_id The id of request * @return 0 on success, otherwise a negative error value * @retval #MAPS_ERROR_NONE Successful * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter @@ -908,7 +901,7 @@ int maps_plugin_move_center(maps_view_h view, int delta_x, int delta_y); * @remarks This function requires network access. * * @param[in] view The handle of maps_view - * @param[in] enabled The enable status + * @param[in] enable The enable status * @return 0 on success, otherwise a negative error value * @retval #MAPS_ERROR_NONE Successful * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter diff --git a/include/maps_view.h b/include/maps_view.h index e85240e..ef98a2f 100755 --- a/include/maps_view.h +++ b/include/maps_view.h @@ -918,9 +918,9 @@ int maps_view_get_screen_location(const maps_view_h view, int *x, int *y, int *w * @remarks Newly created View port has the size of its parent. * @since_tizen @if MOBILE 3.0 @elseif WEARABLE 2.3.2 @endif * - * @param[in] view The view handle - * @param[in] width The new new width, in screen units - * @param[in] height The new new height, in screen units + * @param[in] view The view handle + * @param[in] x The new new width, in screen units + * @param[in] y The new new height, in screen units * @return 0 on success, otherwise a negative error value * @retval #MAPS_ERROR_NONE Successful * @retval #MAPS_ERROR_INVALID_PARAMETER Invalid parameter