From: Abhimanyu Swami Date: Mon, 14 Sep 2020 23:23:25 +0000 (+0530) Subject: Native API issues Fix X-Git-Tag: submit/tizen_5.5/20201001.054614^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c91c37d5e9149b0ed8fb400f96541690fb24b9cd;p=platform%2Fcore%2Fapi%2Fmaps-service.git Native API issues Fix Change-Id: I3d61d72afd10a6464f03bb791f24b2a25a7683b2 Signed-off-by: Abhimanyu Swami --- diff --git a/doc/maps_service_doc.h b/doc/maps_service_doc.h index b19d47c..9cc411b 100644 --- a/doc/maps_service_doc.h +++ b/doc/maps_service_doc.h @@ -112,7 +112,8 @@ * * @section CAPI_MAPS_SERVICE_MODULE_FEATURE Related Features * This API is related with the following features:\n - * - http://tizen.org/feature/maps\n + * - %http://tizen.org/feature/maps\n + * * It is recommended to design feature related codes in your application for reliability.\n * You can check if a device supports the related features for this API by using @ref CAPI_SYSTEM_SYSTEM_INFO_MODULE, thereby controlling the procedure of your application.\n * To ensure your application is only running on the device with specific features, please define the features in your manifest file using the manifest editor in the SDK.\n diff --git a/include/maps_address.h b/include/maps_address.h index 2396d4a..2a38310 100644 --- a/include/maps_address.h +++ b/include/maps_address.h @@ -320,7 +320,6 @@ int maps_address_get_freetext(const maps_address_h address, char **freetext); * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported * @pre @a address is created using maps_address_create(). * @see maps_address_create() - * @see maps_address_get_number() */ int maps_address_set_building_number(maps_address_h address, const char *building_number); diff --git a/include/maps_coordinates.h b/include/maps_coordinates.h index 44d7633..d7db0b1 100644 --- a/include/maps_coordinates.h +++ b/include/maps_coordinates.h @@ -335,7 +335,6 @@ int maps_coordinates_list_get_length(maps_coordinates_list_h coordinates_list, i * @param[in] user_data The user data passed from the foreach function * @return @c true to continue with the next iteration of the loop,\n * @c false to break out of the loop - * @see batch_coordinates_foreach_coordinates() */ typedef bool (*maps_coordinates_cb) (int index, maps_coordinates_h coordinates, void *user_data); diff --git a/include/maps_preference.h b/include/maps_preference.h index cab7eba..88a140a 100644 --- a/include/maps_preference.h +++ b/include/maps_preference.h @@ -682,7 +682,6 @@ int maps_preference_set_route_alternatives_enabled(maps_preference_h preference, * @retval #MAPS_ERROR_NOT_SUPPORTED Not supported * @pre @a preference is created using maps_preference_create(). * @see maps_preference_create() - * @see maps_preference_get_property() * @see maps_preference_foreach_property() */ int maps_preference_set_property(maps_preference_h preference, const char *key, const char *value); diff --git a/include/maps_service.h b/include/maps_service.h index ba605cd..18d73e4 100644 --- a/include/maps_service.h +++ b/include/maps_service.h @@ -442,7 +442,7 @@ int maps_service_cancel_request(const maps_service_h maps, int request_id); * @if WEARABLE * @section CAPI_MAPS_SERVICE_MODULE_FEATURE Related Features * This API is related with the following features:\n - * - http://tizen.org/feature/network.internet\n + * - %http://tizen.org/feature/network.internet\n * It is recommended to design feature related codes in your application for reliability.\n * You can check if a device supports the related features for this API by using * @ref CAPI_SYSTEM_SYSTEM_INFO_MODULE, thereby controlling the procedure of your application.\n @@ -777,7 +777,7 @@ int maps_service_multi_reverse_geocode(const maps_service_h maps, maps_coordinat * @if WEARABLE * @section CAPI_MAPS_SERVICE_MODULE_FEATURE Related Features * This API is related with the following features:\n - * - http://tizen.org/feature/network.internet\n + * - %http://tizen.org/feature/network.internet\n * It is recommended to design feature related codes in your application for reliability.\n * You can check if a device supports the related features for this API by using * @ref CAPI_SYSTEM_SYSTEM_INFO_MODULE, thereby controlling the procedure of your application.\n @@ -1124,7 +1124,7 @@ int maps_service_get_place_details(const maps_service_h maps, const char *uri, m * @if WEARABLE * @section CAPI_MAPS_SERVICE_MODULE_FEATURE Related Features * This API is related with the following features:\n - * - http://tizen.org/feature/network.internet\n + * - %http://tizen.org/feature/network.internet\n * It is recommended to design feature related codes in your application for reliability.\n * You can check if a device supports the related features for this API by using * @ref CAPI_SYSTEM_SYSTEM_INFO_MODULE, thereby controlling the procedure of your application.\n diff --git a/include/maps_view.h b/include/maps_view.h index 888a1c3..ab930f4 100644 --- a/include/maps_view.h +++ b/include/maps_view.h @@ -31,7 +31,7 @@ * @if WEARABLE * @section CAPI_MAPS_SERVICE_MODULE_FEATURE Related Features * This API is related with the following features:\n - * - http://tizen.org/feature/network.internet\n + * - %http://tizen.org/feature/network.internet\n * It is recommended to design feature related codes in your application for reliability.\n * You can check if a device supports the related features for this API by using * @ref CAPI_SYSTEM_SYSTEM_INFO_MODULE, thereby controlling the procedure of your application.\n diff --git a/include/maps_view_event_data.h b/include/maps_view_event_data.h index 6f62194..66abf5c 100644 --- a/include/maps_view_event_data.h +++ b/include/maps_view_event_data.h @@ -96,13 +96,13 @@ typedef void *maps_view_event_data_h; * @see #maps_view_gesture_e */ typedef enum _maps_view_action_e { - MAPS_VIEW_ACTION_NONE, /** Indicates the empty action */ - MAPS_VIEW_ACTION_SCROLL, /** Indicates the set center action */ - MAPS_VIEW_ACTION_ZOOM, /** Indicates the zoom action */ - MAPS_VIEW_ACTION_ZOOM_IN, /** Indicates the zoom-in action */ - MAPS_VIEW_ACTION_ZOOM_OUT, /** Indicates the zoom-out action */ - MAPS_VIEW_ACTION_ZOOM_AND_SCROLL, /** Indicates the zoom and scrolling action */ - MAPS_VIEW_ACTION_ROTATE, /** Indicates the rotation action */ + MAPS_VIEW_ACTION_NONE, /**< Indicates the empty action */ + MAPS_VIEW_ACTION_SCROLL, /**< Indicates the set center action */ + MAPS_VIEW_ACTION_ZOOM, /**< Indicates the zoom action */ + MAPS_VIEW_ACTION_ZOOM_IN, /**< Indicates the zoom-in action */ + MAPS_VIEW_ACTION_ZOOM_OUT, /**< Indicates the zoom-out action */ + MAPS_VIEW_ACTION_ZOOM_AND_SCROLL, /**< Indicates the zoom and scrolling action */ + MAPS_VIEW_ACTION_ROTATE, /**< Indicates the rotation action */ } maps_view_action_e;