modify comment related to milliseconds
authordavid_kim31 <david_kim31@samsung.com>
Wed, 10 Apr 2013 15:22:59 +0000 (00:22 +0900)
committerdavid_kim31 <david_kim31@samsung.com>
Wed, 10 Apr 2013 15:22:59 +0000 (00:22 +0900)
Change-Id: I5b6341c793410e362de74ebcf6b2963d93a098bb
Signed-off-by: david_kim31 <david_kim31@samsung.com>
inc/FSysAlarm.h
src/system/FSys_AlarmManager.cpp

index b538997..902fd9b 100644 (file)
@@ -86,7 +86,7 @@ public:
         * @privilege   %http://tizen.org/privilege/alarm
         *
         * @return      An error code
-        * @param[in]   duetime                 The time for the alarm to ring
+        * @param[in]   duetime                 The time for the alarm to ring. @n Any value with a unit that is less than a second is ignored.
         * @exception   E_SUCCESS               The method is successful.
         * @exception   E_PRIVILEGE_DENIED      The application does not have the privilege to call this method.
         * @exception   E_INVALID_ARG           The specified @c duetime is invalid.
@@ -103,9 +103,9 @@ public:
         * @privilege   %http://tizen.org/privilege/alarm
         *
         * @return      An error code
-        * @param[in]   start                   The time for the alarm to ring first
-        * @param[in]   period                  The interval in minutes between consecutive alarm rings
-        * @param[in]   pEnd                    The time for the alarm ring to end
+        * @param[in]   start                   The time for the alarm to ring first. @n Any value with a unit that is less than a second is ignored.
+        * @param[in]   period                  The interval in minutes between consecutive alarm rings.
+        * @param[in]   pEnd                    The time for the alarm ring to end. @n Any value with a unit that is less than a second is ignored.
         * @exception   E_SUCCESS               The method is successful.
         * @exception   E_PRIVILEGE_DENIED      The application does not have the privilege to call this method.
         * @exception   E_INVALID_ARG           A specified input parameter is invalid.
index 11d154a..9da4f57 100644 (file)
@@ -126,11 +126,12 @@ _AlarmManager::ReserveAlarm(Tizen::Base::String appId, Tizen::Base::DateTime sta
 
        if(period > 0)
        {
+               SysLog(NID_SYS, "It is repeated alarm and period time is %d minutes", period);
                ret = alarmmgr_set_repeat_mode(pAlarmInfo, ALARM_REPEAT_MODE_REPEAT, period * _SECOND_OF_MINUTE);
                SysTryCatch(NID_SYS, ret == ALARMMGR_RESULT_SUCCESS, r = E_SYSTEM, r, "It is failed to set repeat mode");
        }
 
-       ret = alarmmgr_set_type(pAlarmInfo, 0x04/*ALARM_TYPE_NOLAUNCH*/);
+       ret = alarmmgr_set_type(pAlarmInfo, ALARM_TYPE_NOLAUNCH);
        SysTryCatch(NID_SYS, ret == ALARMMGR_RESULT_SUCCESS, r = E_SYSTEM, r, "It is failed to set repeat mode");
 
        ret = alarmmgr_add_alarm_appsvc_with_localtime(pAlarmInfo,(void *)pBundle, &reservedAlarmId);