3.0 Native API reference english examination 35/109135/1 accepted/tizen/common/20170113.183818 accepted/tizen/ivi/20170113.224401 accepted/tizen/mobile/20170113.224328 accepted/tizen/wearable/20170113.224339 submit/tizen/20170113.034613
authorJeesun Kim <iamjs.kim@samsung.com>
Fri, 30 Dec 2016 00:26:03 +0000 (09:26 +0900)
committerJeesun Kim <iamjs.kim@samsung.com>
Mon, 9 Jan 2017 04:25:34 +0000 (13:25 +0900)
Change-Id: I0a54c757b7e4201ee0ca5bde164fa260567da9aa

include/calendar.h
include/calendar_errors.h
include/calendar_reminder.h
include/calendar_service.h
include/calendar_types.h
include/calendar_vcalendar.h
include/calendar_view.h

index 3059635..a2795c4 100644 (file)
@@ -16,7 +16,7 @@
  * limitations under the License.
  *
  */
+
 #ifndef __TIZEN_SOCIAL_CALENDAR_H__
 #define __TIZEN_SOCIAL_CALENDAR_H__
 
index 94924ad..f050dd8 100644 (file)
@@ -49,7 +49,7 @@ typedef enum {
        CALENDAR_ERROR_NOT_PERMITTED = TIZEN_ERROR_NOT_PERMITTED, /**< Operation not permitted */
        CALENDAR_ERROR_FILE_NO_SPACE = TIZEN_ERROR_FILE_NO_SPACE_ON_DEVICE,     /**< FS is full */
        CALENDAR_ERROR_PERMISSION_DENIED = TIZEN_ERROR_PERMISSION_DENIED, /**< Permission denied */
-       CALENDAR_ERROR_DB_FAILED = TIZEN_ERROR_CALENDAR | 0x02, /**< No access to the database */
+       CALENDAR_ERROR_DB_FAILED = TIZEN_ERROR_CALENDAR | 0x02, /**< No access to the database */
        CALENDAR_ERROR_ITERATOR_END = TIZEN_ERROR_CALENDAR | 0x04, /**< Iterator is on the last position */
        CALENDAR_ERROR_DB_RECORD_NOT_FOUND = TIZEN_ERROR_CALENDAR | 0x05, /**< Database not found */
        CALENDAR_ERROR_IPC = TIZEN_ERROR_CALENDAR | 0xBF, /**< Unknown IPC error */
index 524f54a..4902773 100644 (file)
@@ -46,12 +46,12 @@ typedef void (*calendar_reminder_cb)(const char *param, void* user_data);
 
 
 /**
- * @brief Adds a callback to get a notification when an alarm alerts.
+ * @brief Adds a callback to get a notification when an alarm gives an alert.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
  * @privlevel public
  * @privilege %http://tizen.org/privilege/calendar.read
  * @param[in] callback The callback to be added
- * @param[in] user_data        The user data
+ * @param[in] user_data The user data
  * @return @c 0 on success,
  *         otherwise a negative error value
  * @retval #CALENDAR_ERROR_NONE Successful
@@ -64,7 +64,7 @@ int calendar_reminder_add_cb(calendar_reminder_cb callback, void *user_data);
 
 
 /**
- * @brief Removes a callback to get a notification when an alarm alerts.
+ * @brief Removes a callback to get a notification when an alarm gives an alert.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
  * @param[in] callback The callback to be removed
  * @param[in] user_data The user data
index ce4711c..9fcfdde 100644 (file)
@@ -61,7 +61,7 @@ int calendar_connect(void);
 /**
  * @brief Disconnects from the calendar service.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
- * @remarks If there is no opened connection, this function returns #CALENDAR_ERROR_DB_FAILED.
+ * @remarks If there is no open connection, this function returns #CALENDAR_ERROR_DB_FAILED.
  * @return @c 0 on success,
  *         otherwise a negative error value
  * @retval #CALENDAR_ERROR_NONE Successful
@@ -92,7 +92,7 @@ int calendar_connect_on_thread(void);
 /**
  * @brief Disconnects from the calendar service on a thread.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
- * @remarks If there is no opened connection, this function returns #CALENDAR_ERROR_DB_FAILED.
+ * @remarks If there is no open connection, this function returns #CALENDAR_ERROR_DB_FAILED.
  * @return @c 0 on success,
  *         otherwise a negative error value
  * @retval #CALENDAR_ERROR_NONE Successful
index 7c5d9da..c249165 100644 (file)
@@ -292,7 +292,7 @@ typedef enum {
        CALENDAR_ALARM_ACTION_AUDIO = 0, /**< Audio action */
        CALENDAR_ALARM_ACTION_DISPLAY, /**< Display action */
        CALENDAR_ALARM_ACTION_EMAIL, /**< Email action */
-       CALENDAR_ALARM_ACTION_MAX, /**< Calenar alarm action max enum count */
+       CALENDAR_ALARM_ACTION_MAX, /**< Calendar alarm action max enum count */
 } calendar_alarm_action_e;
 
 
index 558e169..0e6916c 100644 (file)
@@ -16,7 +16,7 @@
  * limitations under the License.
  *
  */
+
 #ifndef __TIZEN_SOCIAL_CALENDAR_VCALENDAR_H__
 #define __TIZEN_SOCIAL_CALENDAR_VCALENDAR_H__
 
@@ -67,7 +67,7 @@ int calendar_vcalendar_parse_to_calendar(const char* vcalendar_stream, calendar_
 
 
 /**
- * @brief Called to get a record handle of 
+ * @brief Called to get a record handle of
  *        \ref CAPI_SOCIAL_CALENDAR_SVC_VIEW_MODULE_calendar_event or \ref CAPI_SOCIAL_CALENDAR_SVC_VIEW_MODULE_calendar_todo.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
  * @param[in] record The record handle (\ref CAPI_SOCIAL_CALENDAR_SVC_VIEW_MODULE_calendar_event or \ref CAPI_SOCIAL_CALENDAR_SVC_VIEW_MODULE_calendar_todo)
@@ -82,7 +82,7 @@ typedef bool (*calendar_vcalendar_parse_cb)(calendar_record_h record, void *user
 
 
 /**
- * @brief Retrieves all events or to-dos 
+ * @brief Retrieves all events or to-dos
  *        (\ref CAPI_SOCIAL_CALENDAR_SVC_VIEW_MODULE_calendar_event or \ref CAPI_SOCIAL_CALENDAR_SVC_VIEW_MODULE_calendar_todo) from a vCalendar file.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 3.0 @endif
  * @param[in] vcalendar_file_path The file path of the vCalendar stream file
index eaa3a1a..9f0e35d 100644 (file)
@@ -14,7 +14,7 @@
  * limitations under the License.
  */
 
+
 #ifndef __TIZEN_SOCIAL_CALENDAR_VIEW_H__
 #define __TIZEN_SOCIAL_CALENDAR_VIEW_H__