From 1235e694c21f6e3e000e24a176123c386ea91df1 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Tue, 10 Dec 2013 12:35:32 +0100 Subject: fdo#70278: editeng: fix Time fields in Impress Apparenty an uninitialized SvxTimeField is created instead of the SvxExtTimeField that is needed to preserve the value and format. (regression from ee5fc5d25fe102c30daf7d181b8181d40b85a4f3) Change-Id: I36b16af0c143e8b5451a1925806756492dc2334e --- editeng/source/items/flditem.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editeng') diff --git a/editeng/source/items/flditem.cxx b/editeng/source/items/flditem.cxx index 972d8f58a653..bf8f6499b2ba 100644 --- a/editeng/source/items/flditem.cxx +++ b/editeng/source/items/flditem.cxx @@ -78,7 +78,7 @@ SvxFieldData* SvxFieldData::Create(const uno::Reference& xTe return pData; } - if (nFieldType != text::textfield::Type::TIME && nFieldType != text::textfield::Type::DATE) + if (nFieldType != text::textfield::Type::TIME) { util::DateTime aDateTime = xPropSet->getPropertyValue(UNO_TC_PROP_DATE_TIME).get(); Time aTime(aDateTime.Hours, aDateTime.Minutes, aDateTime.Seconds, aDateTime.NanoSeconds); -- cgit