Revert applying millisec
authorHokwon Song <hokwon.song@samsung.com>
Thu, 28 Mar 2013 01:00:28 +0000 (10:00 +0900)
committerHokwon Song <hokwon.song@samsung.com>
Thu, 28 Mar 2013 01:00:28 +0000 (10:00 +0900)
Change-Id: I622b8403f2a161c306668741fc6e22edd752ada1
Signed-off-by: Hokwon Song <hokwon.song@samsung.com>
src/locales/FLcl_CalendarImpl.cpp

index 9fea8c1..2c55ae3 100644 (file)
@@ -414,10 +414,9 @@ _CalendarImpl::GetTimeImpl(void) const
        int hour = __pCalendar->GetTimeField(TIME_FIELD_HOUR_OF_DAY);
        int minute = __pCalendar->GetTimeField(TIME_FIELD_MINUTE);
        int second = __pCalendar->GetTimeField(TIME_FIELD_SECOND);
-       int millisec = __pCalendar->GetTimeField(TIME_FIELD_MILLISECOND);
 
        DateTime dateTime;
-       result r = dateTime.SetValue(year, month, date, hour, minute, second, millisec);
+       result r = dateTime.SetValue(year, month, date, hour, minute, second);
        SysTryReturn(NID_LCL, r == E_SUCCESS, DateTime(), r, "[%s] Unable to set time in DateTime object", GetErrorMessage(r));
 
        return dateTime;