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
c5f72002
Kaydet (Commit)
c5f72002
authored
Ock 05, 2015
tarafından
Matteo Casalin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove misleading comment and simplify boundary check
Change-Id: I115bb1cd1be9c7c544508d1328248ebf3ad0d225
üst
8229d5af
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
docxtablestyleexport.cxx
sw/source/filter/ww8/docxtablestyleexport.cxx
+3
-5
No files found.
sw/source/filter/ww8/docxtablestyleexport.cxx
Dosyayı görüntüle @
c5f72002
...
@@ -118,11 +118,9 @@ void DocxTableStyleExport::TableStyles(sal_Int32 nCountStylesToWrite)
...
@@ -118,11 +118,9 @@ void DocxTableStyleExport::TableStyles(sal_Int32 nCountStylesToWrite)
}
}
if
(
!
aTableStyles
.
getLength
())
if
(
!
aTableStyles
.
getLength
())
return
;
return
;
// HACK
// Ms Office seems to have an internal limitation of 4091 styles
if
(
nCountStylesToWrite
>
aTableStyles
.
getLength
())
// and refuses to load .docx with more, even though the spec seems to allow that;
nCountStylesToWrite
=
aTableStyles
.
getLength
();
// so simply if there are more styles, don't export those
nCountStylesToWrite
=
(
nCountStylesToWrite
>
aTableStyles
.
getLength
())
?
aTableStyles
.
getLength
()
:
nCountStylesToWrite
;
for
(
sal_Int32
i
=
0
;
i
<
nCountStylesToWrite
;
++
i
)
for
(
sal_Int32
i
=
0
;
i
<
nCountStylesToWrite
;
++
i
)
{
{
...
...
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