Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
0123bbbc
Kaydet (Commit)
0123bbbc
authored
May 27, 2015
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Resolves: tdf#89731 numberingChange feature not available in writer
Change-Id: Ie779e78fc3c7ccf717117513d9187697c22cc51a
üst
bda06661
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
DomainMapper_Impl.cxx
writerfilter/source/dmapper/DomainMapper_Impl.cxx
+8
-4
No files found.
writerfilter/source/dmapper/DomainMapper_Impl.cxx
Dosyayı görüntüle @
0123bbbc
...
@@ -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)));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment