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
f8b94e51
Kaydet (Commit)
f8b94e51
authored
May 16, 2015
tarafından
Markus Mohrhard
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix sheet into which we insert extLst cond formats
Change-Id: Idbf9772bbb2c034a6c016492ab31b87e248f7b47
üst
e9a206c8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
condformatbuffer.cxx
sc/source/filter/oox/condformatbuffer.cxx
+1
-1
extlstcontext.cxx
sc/source/filter/oox/extlstcontext.cxx
+7
-0
No files found.
sc/source/filter/oox/condformatbuffer.cxx
Dosyayı görüntüle @
f8b94e51
...
...
@@ -1144,10 +1144,10 @@ void CondFormatBuffer::finalizeImport()
for
(
auto
itr
=
maExtCondFormats
.
begin
();
itr
!=
maExtCondFormats
.
end
();
++
itr
)
{
SCTAB
nTab
=
this
->
getCurrentSheetIndex
();
ScDocument
*
pDoc
=
&
getScDocument
();
const
ScRangeList
&
rRange
=
itr
->
getRange
();
SCTAB
nTab
=
rRange
.
front
()
->
aStart
.
Tab
();
ScConditionalFormat
*
pFormat
=
findFormatByRange
(
rRange
,
pDoc
,
nTab
);
if
(
!
pFormat
)
{
...
...
sc/source/filter/oox/extlstcontext.cxx
Dosyayı görüntüle @
f8b94e51
...
...
@@ -156,6 +156,13 @@ void ExtConditionalFormattingContext::onEndElement()
if
(
!
bSuccess
||
aRange
.
empty
())
break
;
SCTAB
nTab
=
getCurrentSheetIndex
();
for
(
size_t
i
=
0
;
i
<
aRange
.
size
();
++
i
)
{
aRange
[
i
]
->
aStart
.
SetTab
(
nTab
);
aRange
[
i
]
->
aEnd
.
SetTab
(
nTab
);
}
boost
::
ptr_vector
<
ExtCfCondFormat
>&
rExtFormats
=
getCondFormats
().
importExtCondFormat
();
rExtFormats
.
push_back
(
new
ExtCfCondFormat
(
aRange
,
maEntries
));
}
...
...
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