Home
last modified time | relevance | path

Searched refs:nIntTime (Results 1 – 1 of 1) sorted by relevance

/trunk/main/connectivity/source/drivers/calc/
H A DCTable.cxx384 long nIntTime = (long)rtl::math::round( fTime * 8640000.0 ); in lcl_SetValue() local
385 if ( nIntTime == 8640000 ) in lcl_SetValue()
386 nIntTime = 0; // 23:59:59.995 and above is 00:00:00.00 in lcl_SetValue()
388 aTime.HundredthSeconds = (sal_uInt16)( nIntTime % 100 ); in lcl_SetValue()
389 nIntTime /= 100; in lcl_SetValue()
390 aTime.Seconds = (sal_uInt16)( nIntTime % 60 ); in lcl_SetValue()
391 nIntTime /= 60; in lcl_SetValue()
392 aTime.Minutes = (sal_uInt16)( nIntTime % 60 ); in lcl_SetValue()
393 nIntTime /= 60; in lcl_SetValue()
394 OSL_ENSURE( nIntTime < 24, "error in time calculation" ); in lcl_SetValue()
[all …]