Kaydet (Commit) 0123bbbc authored tarafından Caolán McNamara's avatar Caolán McNamara

Resolves: tdf#89731 numberingChange feature not available in writer

Change-Id: Ie779e78fc3c7ccf717117513d9187697c22cc51a
üst bda06661
...@@ -4801,8 +4801,10 @@ void DomainMapper_Impl::SetCurrentRedlineAuthor( const OUString& sAuthor ) ...@@ -4801,8 +4801,10 @@ void DomainMapper_Impl::SetCurrentRedlineAuthor( const OUString& sAuthor )
{ {
if (!m_xAnnotationField.is()) if (!m_xAnnotationField.is())
{ {
assert( m_currentRedline.get()); if (m_currentRedline.get())
m_currentRedline->m_sAuthor = sAuthor; m_currentRedline->m_sAuthor = sAuthor;
else
SAL_INFO("writerfilter.dmapper", "numberingChange not implemented");
} }
else else
m_xAnnotationField->setPropertyValue("Author", uno::makeAny(sAuthor)); m_xAnnotationField->setPropertyValue("Author", uno::makeAny(sAuthor));
...@@ -4818,8 +4820,10 @@ void DomainMapper_Impl::SetCurrentRedlineDate( const OUString& sDate ) ...@@ -4818,8 +4820,10 @@ void DomainMapper_Impl::SetCurrentRedlineDate( const OUString& sDate )
{ {
if (!m_xAnnotationField.is()) if (!m_xAnnotationField.is())
{ {
assert( m_currentRedline.get()); if (m_currentRedline.get())
m_currentRedline->m_sDate = sDate; m_currentRedline->m_sDate = sDate;
else
SAL_INFO("writerfilter.dmapper", "numberingChange not implemented");
} }
else else
m_xAnnotationField->setPropertyValue("DateTimeValue", uno::makeAny(ConversionHelper::ConvertDateStringToDateTime(sDate))); m_xAnnotationField->setPropertyValue("DateTimeValue", uno::makeAny(ConversionHelper::ConvertDateStringToDateTime(sDate)));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment