Add description for notification_ex API 17/202717/52
authorSukHyung, Kang <shine.kang@samsung.com>
Wed, 3 Apr 2019 07:24:00 +0000 (16:24 +0900)
committerSukHyung, Kang <shine.kang@samsung.com>
Tue, 23 Apr 2019 00:46:43 +0000 (09:46 +0900)
Change-Id: Idcf9c47ea40a773ced9c916f38d3989c03d2905f
Signed-off-by: SukHyung, Kang <shine.kang@samsung.com>
Signed-off-by: Junghoon Park <jh9216.park@samsung.com>
notification-ex/api/notification_ex_event_info.h
notification-ex/api/notification_ex_item.h
notification-ex/api/notification_ex_text.h

index 9c3c287..f361355 100644 (file)
@@ -195,7 +195,7 @@ int noti_ex_event_info_get_channel(noti_ex_event_info_h handle, char **channel);
 int noti_ex_event_info_get_item_id(noti_ex_event_info_h handle, char **item_id);
 
 /**
- * @brief Gets the id of reqest for an event.
+ * @brief Gets the id of request for an event.
  * @since_tizen 5.5
  * @param[in] handle The notification_ex event info handle
  * @param[out] req_id The id of reqeust for event
index 9dfbca1..0cf6fc8 100644 (file)
@@ -601,7 +601,8 @@ typedef void* noti_ex_style_h;
 }
  * @endcode
  */
-int noti_ex_style_create(noti_ex_style_h *handle, noti_ex_color_h color, noti_ex_padding_h padding, noti_ex_geometry_h geometry);
+int noti_ex_style_create(noti_ex_style_h *handle, noti_ex_color_h color,
+               noti_ex_padding_h padding, noti_ex_geometry_h geometry);
 
 /**
  * @brief Releases the notification_ex style handle.
index 02e0253..eab8d25 100644 (file)
@@ -34,7 +34,7 @@ extern "C" {
  * @param[out] handle The notification_ex item handle
  * @param[in] id The id of notification_ex item
  * @param[in] text The text of text item
- * @param[in] hyper_link The hyperlink of text item
+ * @param[in] hyperlink The hyperlink of text item
  * @return #NOTI_EX_ERROR_NONE On success, other value on failure
  * @retval #NOTI_EX_ERROR_NONE Success
  * @retval #NOTI_EX_ERROR_INVALID_PARAMETER Invalid parameter
@@ -53,7 +53,7 @@ extern "C" {
 }
  * @endcode
  */
-int noti_ex_item_text_create(noti_ex_item_h *handle, const char *id, const char *text, const char *hyper_link);
+int noti_ex_item_text_create(noti_ex_item_h *handle, const char *id, const char *text, const char *hyperlink);
 
 /**
  * @brief Sets the text contents of the text item.