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
dfa7652d
Kaydet (Commit)
dfa7652d
authored
Mar 12, 2013
tarafından
Noel Power
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix for fdo#62111 - don't count non-default empty rows as rows to repeat
Change-Id: I075310ef63ab4eb666da2092d4be1c6f8d989b75
üst
28b0168b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
xetable.cxx
sc/source/filter/excel/xetable.cxx
+7
-4
No files found.
sc/source/filter/excel/xetable.cxx
Dosyayı görüntüle @
dfa7652d
...
@@ -2052,12 +2052,15 @@ void XclExpRowBuffer::Finalize( XclExpDefaultRowData& rDefRowData, const ScfUInt
...
@@ -2052,12 +2052,15 @@ void XclExpRowBuffer::Finalize( XclExpDefaultRowData& rDefRowData, const ScfUInt
}
}
if
(
pPrev
)
if
(
pPrev
)
{
{
sal_uInt32
nRpt
=
rRow
->
GetXclRow
()
-
pPrev
->
GetXclRow
();
pPrev
->
SetXclRowRpt
(
nRpt
);
if
(
nRpt
>
1
)
aRepeated
.
push_back
(
pPrev
);
if
(
pPrev
->
IsDefaultable
())
if
(
pPrev
->
IsDefaultable
())
{
{
// if the previous row we processed is not
// defaultable then afaict the rows inbetween are
// not used ( and not repeatable )
sal_uInt32
nRpt
=
rRow
->
GetXclRow
()
-
pPrev
->
GetXclRow
();
if
(
nRpt
>
1
)
aRepeated
.
push_back
(
pPrev
);
pPrev
->
SetXclRowRpt
(
nRpt
);
XclExpDefaultRowData
aDefData
(
*
pPrev
);
XclExpDefaultRowData
aDefData
(
*
pPrev
);
size_t
&
rnDefCount
=
aDefRowMap
[
aDefData
];
size_t
&
rnDefCount
=
aDefRowMap
[
aDefData
];
rnDefCount
+=
(
pPrev
->
GetXclRowRpt
()
-
1
);
rnDefCount
+=
(
pPrev
->
GetXclRowRpt
()
-
1
);
...
...
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