1. Deprecated some enumerations.
authorKyuho Jo <kyuho.jo@samsung.com>
Fri, 22 May 2015 10:21:16 +0000 (19:21 +0900)
committerKyuho Jo <kyuho.jo@samsung.com>
Fri, 22 May 2015 10:21:16 +0000 (19:21 +0900)
2. Fixed a fault on doxygen comment.

Change-Id: I89e6b3501556ea2c3e09ba164c085a5b933323fb
Signed-off-by: Kyuho Jo <kyuho.jo@samsung.com>
include/notification.h
include/notification_type.h

index 8e1744d2e11635464f5ff923394aac8d0d657ef0..295d3b61a0154f5b7956a9a1b31fbaa50531a406 100644 (file)
@@ -1394,7 +1394,6 @@ int notification_get_permission(notification_h noti, notification_permission_typ
 
 /**
  * @brief Gets the package name of the notification
- * @remarks The pkgname must be released using free()
  * @since_tizen 2.4
  * @param[in] noti Notification handle
  * @param[out] pkgname The package name of the notification
@@ -1416,7 +1415,6 @@ int notification_get_permission(notification_h noti, notification_permission_typ
 
        if(noti_err != NOTIFICATION_ERROR_NONE) {
                notification_free(noti);
-               free(pkgname);
                return;
        }
 }
index 55cf56d38dc0303f3b14c98a46857deb5ac8906a..b40a2671000fb55f08c8d6995520c362a63e355e 100644 (file)
@@ -131,7 +131,8 @@ typedef enum _notification_led_op {
 } notification_led_op_e;
 
 /**
- * @brief This will be deprecated.
+ * @deprecated Deprecated since 2.3.1
+ * @brief Enumeration for setting display type of count
  * @since_tizen 2.3
  */
 typedef enum _notification_count_display_type {
@@ -296,11 +297,11 @@ enum _notification_property {
        NOTIFICATION_PROP_DISABLE_AUTO_DELETE = 0x00000004,
                                                        /**< Disable auto delete when it selected */
        NOTIFICATION_PROP_LAUNCH_UG = 0x00000008,
-                                               /**< Will be deprecated. Notification Tray should launch application using appsvc API */
+                                               /**< Notification Tray should launch application using appsvc API (Deprecated since 2.3.1) */
        NOTIFICATION_PROP_DISABLE_TICKERNOTI = 0x00000010,
-                                                       /**< Will be deprecated. Use notification_set_display_applist API */
+                                                       /**< Use notification_set_display_applist API (Deprecated since 2.3.1) */
        NOTIFICATION_PROP_PERMANENT_DISPLAY = 0x00000020,
-                                                       /** < Will be deprecated. */
+                                                       /**< The notification will not be removed (Deprecated since 2.3.1) */
        NOTIFICATION_PROP_DISABLE_UPDATE_ON_INSERT = 0x00000040,/**< Disable update when it inserted. */
        NOTIFICATION_PROP_DISABLE_UPDATE_ON_DELETE = 0x00000080,/**< Disable update when it deleted. */
        NOTIFICATION_PROP_VOLATILE_DISPLAY = 0x00000100,/**< Deleted when device is rebooted eventhough NOTIFICATION_TYPE_NOTI type */
@@ -332,7 +333,7 @@ typedef enum _notification_op_type {
        NOTIFICATION_OP_UPDATE, /**< Notification updated */
        NOTIFICATION_OP_DELETE, /**< Notification deleted */
        NOTIFICATION_OP_DELETE_ALL,     /**< Notifications deleted */
-       NOTIFICATION_OP_REFRESH,        /**< Deprecated */
+       NOTIFICATION_OP_REFRESH,        /**< (Deprecated Since 2.3.1) */
        NOTIFICATION_OP_SERVICE_READY,  /**< Notification service is ready  */
 } notification_op_type_e;