fdo#82577: Handle Time
Put the TOOLS Time class in the tools namespace. Avoids clash with the X11 Time typedef. Change-Id: Iac57d5aef35e81ace1ee0d5e6d76cb278f8ad866 Reviewed-on: https://gerrit.libreoffice.org/11684 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
This commit is contained in:
committed by
Noel Grandin
parent
eb4811590c
commit
fc04f76336
@@ -790,7 +790,7 @@ void ODatabaseForm::AppendComponent(HtmlSuccessfulObjList& rList, const Referenc
|
||||
} break;
|
||||
case FormComponentType::TIMEFIELD:
|
||||
{
|
||||
// <name>=<value> // Value is a Time with the format HH:MM:SS
|
||||
// <name>=<value> // Value is a tools::Time with the format HH:MM:SS
|
||||
// no value (NULL) means empty value
|
||||
if( hasProperty(PROPERTY_TIME, xComponentSet) )
|
||||
{
|
||||
@@ -799,7 +799,7 @@ void ODatabaseForm::AppendComponent(HtmlSuccessfulObjList& rList, const Referenc
|
||||
sal_Int32 nInt32Val = 0;
|
||||
if (aVal >>= nInt32Val)
|
||||
{
|
||||
::Time aTime(nInt32Val);
|
||||
::tools::Time aTime(nInt32Val);
|
||||
OUStringBuffer aBuffer;
|
||||
appendDigits( aTime.GetHour(), 2, aBuffer );
|
||||
aBuffer.append( '-' );
|
||||
|
Reference in New Issue
Block a user