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
4c462b24
Kaydet (Commit)
4c462b24
authored
Haz 10, 2012
tarafından
Markus Mohrhard
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
correctly copy the cond formats, fdo#50679
Change-Id: I52d645a8a7662016ced8c1eb6b320c4a14807353
üst
ec961611
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
1 deletion
+14
-1
table2.cxx
sc/source/core/data/table2.cxx
+14
-1
No files found.
sc/source/core/data/table2.cxx
Dosyayı görüntüle @
4c462b24
...
...
@@ -629,6 +629,8 @@ void ScTable::CopyToClip(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2,
if
(
IsProtected
()
)
for
(
i
=
nCol1
;
i
<=
nCol2
;
i
++
)
pTable
->
aCol
[
i
].
RemoveProtected
(
nRow1
,
nRow2
);
pTable
->
mpCondFormatList
.
reset
(
new
ScConditionalFormatList
(
pTable
->
pDocument
,
*
mpCondFormatList
));
}
}
...
...
@@ -663,8 +665,16 @@ void ScTable::CopyConditionalFormat( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCRO
{
ScConditionalFormat
*
pFormat
=
pOldCondFormatList
->
GetFormat
(
nId
);
ScConditionalFormat
*
pNewFormat
=
pFormat
->
Clone
(
pDocument
);
pNewFormat
->
SetKey
(
mpCondFormatList
->
size
()
+
1
);
pNewFormat
->
SetKey
(
0
);
//not in list => create entries in both maps and new format
sal_uLong
nMax
=
0
;
for
(
ScConditionalFormatList
::
const_iterator
itr
=
mpCondFormatList
->
begin
();
itr
!=
mpCondFormatList
->
end
();
++
itr
)
{
if
(
itr
->
GetKey
()
>
nMax
)
nMax
=
itr
->
GetKey
();
}
pNewFormat
->
SetKey
(
nMax
+
1
);
mpCondFormatList
->
InsertNew
(
pNewFormat
);
sal_Int32
nNewId
=
pNewFormat
->
GetKey
();
aOldIdToNewId
.
insert
(
std
::
pair
<
sal_Int32
,
sal_Int32
>
(
nId
,
nNewId
)
);
...
...
@@ -680,6 +690,9 @@ void ScTable::CopyConditionalFormat( SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCRO
{
sal_uInt32
nNewKey
=
aOldIdToNewId
.
find
(
itr
->
first
)
->
second
;
ScConditionalFormat
*
pFormat
=
mpCondFormatList
->
GetFormat
(
nNewKey
);
if
(
!
pFormat
)
continue
;
pFormat
->
UpdateReference
(
URM_MOVE
,
ScRange
(
nCol1
-
nDx
,
nRow1
-
nDy
,
pTable
->
nTab
,
nCol2
-
nDx
,
nRow2
-
nDy
,
pTable
->
nTab
),
nDx
,
nDy
,
pTable
->
nTab
-
nTab
);
pFormat
->
AddRange
(
itr
->
second
);
...
...
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