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
55a169e5
Kaydet (Commit)
55a169e5
authored
Kas 09, 2012
tarafından
Wang Lei
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
ReFix for #i119707 Cell border lost when saving and reopening the attached xls file.
Patch by: Zhang Lu Review by: Wang Lei
üst
e59f5937
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
attarray.cxx
sc/source/core/data/attarray.cxx
+3
-2
xetable.cxx
sc/source/filter/excel/xetable.cxx
+2
-2
No files found.
sc/source/core/data/attarray.cxx
Dosyayı görüntüle @
55a169e5
...
@@ -1933,8 +1933,9 @@ sal_Bool ScAttrArray::GetLastAttr( SCROW& rLastRow, SCROW nLastData ) const
...
@@ -1933,8 +1933,9 @@ sal_Bool ScAttrArray::GetLastAttr( SCROW& rLastRow, SCROW nLastData ) const
while
(
nStartPos
>
0
&&
pData
[
nStartPos
-
1
].
nRow
>
nLastData
&&
while
(
nStartPos
>
0
&&
pData
[
nStartPos
-
1
].
nRow
>
nLastData
&&
!
pData
[
nStartPos
].
pPattern
->
IsVisible
()
)
!
pData
[
nStartPos
].
pPattern
->
IsVisible
()
)
--
nStartPos
;
--
nStartPos
;
if
(
nStartPos
==
0
&&
!
pData
[
nStartPos
].
pPattern
->
IsVisible
())
// add this condition for handle only default pattern in one colume
if
(
nStartPos
>=
0
&&
pData
[
nStartPos
].
nRow
>
nLastData
)
rLastRow
=
nLastData
;
else
if
(
nStartPos
>=
0
&&
pData
[
nStartPos
].
nRow
>
nLastData
)
{
{
bFound
=
sal_True
;
bFound
=
sal_True
;
rLastRow
=
pData
[
nStartPos
].
nRow
;
rLastRow
=
pData
[
nStartPos
].
nRow
;
...
...
sc/source/filter/excel/xetable.cxx
Dosyayı görüntüle @
55a169e5
...
@@ -2359,7 +2359,7 @@ XclExpCellTable::XclExpCellTable( const XclExpRoot& rRoot ) :
...
@@ -2359,7 +2359,7 @@ XclExpCellTable::XclExpCellTable( const XclExpRoot& rRoot ) :
SCCOL
nLastIterScCol
=
nMaxScCol
;
SCCOL
nLastIterScCol
=
nMaxScCol
;
SCROW
nLastIterScRow
=
ulimit_cast
<
SCROW
>
(
nLastUsedScRow
+
128
,
nMaxScRow
);
SCROW
nLastIterScRow
=
ulimit_cast
<
SCROW
>
(
nLastUsedScRow
+
128
,
nMaxScRow
);
// modified for 119707 by zhanglu
// modified for 119707 by zhanglu
/*
SCCOL
rEndColAtt
=
0
;
SCCOL
rEndColAtt
=
0
;
SCROW
rEndRowAtt
=
0
;
SCROW
rEndRowAtt
=
0
;
rDoc
.
GetLastAttrCell
(
nScTab
,
rEndColAtt
,
rEndRowAtt
);
// To get the real last cell's row number, which has visual data or attribute.
rDoc
.
GetLastAttrCell
(
nScTab
,
rEndColAtt
,
rEndRowAtt
);
// To get the real last cell's row number, which has visual data or attribute.
...
@@ -2368,7 +2368,7 @@ XclExpCellTable::XclExpCellTable( const XclExpRoot& rRoot ) :
...
@@ -2368,7 +2368,7 @@ XclExpCellTable::XclExpCellTable( const XclExpRoot& rRoot ) :
if
(
nLastIterScRow
>
nMaxScRow
)
if
(
nLastIterScRow
>
nMaxScRow
)
nLastIterScRow
=
nMaxScRow
;
nLastIterScRow
=
nMaxScRow
;
*/
// modified for 119707 end
// modified for 119707 end
ScUsedAreaIterator
aIt
(
&
rDoc
,
nScTab
,
0
,
0
,
nLastIterScCol
,
nLastIterScRow
);
ScUsedAreaIterator
aIt
(
&
rDoc
,
nScTab
,
0
,
0
,
nLastIterScCol
,
nLastIterScRow
);
...
...
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